Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
提交
议题看板
打开侧边栏
jingqi.liu
pica.cloud.web-education-admin
提交
184e71dd
提交
184e71dd
编写于
3月 20, 2019
作者:
yi.li
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加常量接口
上级
457aeeea
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
35 行增加
和
6 行删除
+35
-6
reservationManage.js
src/store/modules/followup/reservationManage.js
+12
-2
envConfig.js
src/utils/envConfig.js
+9
-4
record-list.vue
src/views/followup/record-manage/record-list.vue
+14
-0
未找到文件。
src/store/modules/followup/reservationManage.js
浏览文件 @
184e71dd
...
...
@@ -8,8 +8,8 @@ export default {
pageSize
:
10
,
//每页数据大小
total
:
null
,
//总数
},
checkRevervationData
:
{
//发送预约校验
},
checkRevervationData
:
{
},
//发送预约校验
constantsData
:
{},
//获取常量
},
mutations
:
{
GET_RESERVATION_LIST
(
state
,
payload
)
{
...
...
@@ -18,6 +18,9 @@ export default {
GET_CHECK_RESERVATION
(
state
,
payload
)
{
state
.
checkRevervationData
=
payload
},
GET_CONSTANS_DATA
(
state
,
payload
)
{
state
.
constantsData
=
payload
},
},
actions
:
{
getReservationList
(
context
,
payload
)
{
...
...
@@ -37,5 +40,12 @@ export default {
context
.
commit
(
'GET_CHECK_RESERVATION'
,
data
)
})
},
getConstantsData
(
context
,
payload
)
{
followApi
.
getBasicData
({
...
payload
}).
then
(({
data
})
=>
{
context
.
commit
(
'GET_CONSTANS_DATA'
,
data
)
})
},
},
}
src/utils/envConfig.js
浏览文件 @
184e71dd
...
...
@@ -6,8 +6,8 @@ export const envConfig = {
// baseUrl: 'https://dev-sc.yunqueyi.com/',
// // baseUrl: 'http://10.177.15.180:10202/',
// // baseUrl: 'http://192.168.140.14:10201/',
// baseUrl: 'https://test1-sc.yunqueyi.com/',
// baseUrl: 'https://test1-sc.yunqueyi.com/',
//baseUrl: 'https://uat-sc.yunqueyi.com/',
baseUrl
:
'http://localhost:11905/portal/'
,
qiniuFileUrl
:
"http://localhost:10201/contents/admin/qiniu/token1"
,
...
...
@@ -16,7 +16,8 @@ export const envConfig = {
loginUrl
:
'https://dev-saas.yunqueyi.com/pica-login/work_station.html'
,
innerLoginUrl
:
'http://localhost:8090/PICA_SSO_FE/html/pica_login.html'
,
followUpApi
:
''
,
followUpApiSoSoApi
:
'http://sosoapi.yunqueyi.com/sosoapi-web/pass/mock/73'
followUpApiSoSoApi
:
'http://sosoapi.yunqueyi.com/sosoapi-web/pass/mock/73'
,
basicDataUrl
:
'https://dev-sc.yunqueyi.com/'
,
},
dev
:
{
baseUrl
:
'https://dev-sc.yunqueyi.com/portal/'
,
...
...
@@ -26,6 +27,7 @@ export const envConfig = {
loginUrl
:
'https://dev-saas.yunqueyi.com/pica-login/work_station.html'
,
innerLoginUrl
:
'https://dev-sso.yunqueyi.com/PICA_SSO_FE/html/pica_login.html'
,
followUpApi
:
''
,
basicDataUrl
:
'https://dev-sc.yunqueyi.com/'
,
},
test
:
{
baseUrl
:
'https://test1-sc.yunqueyi.com/portal/'
,
...
...
@@ -35,6 +37,7 @@ export const envConfig = {
loginUrl
:
'https://test1-saas.yunqueyi.com/pica-login/work_station.html'
,
innerLoginUrl
:
'https://test1-sso.yunqueyi.com/PICA_SSO_FE/html/pica_login.html'
,
followUpApi
:
''
,
basicDataUrl
:
'https://test1-sc.yunqueyi.com/'
,
},
uat
:
{
baseUrl
:
'https://uat-sc.yunqueyi.com/portal/'
,
...
...
@@ -44,8 +47,9 @@ export const envConfig = {
loginUrl
:
'https://uat-saas.yunqueyi.com/pica-login/work_station.html'
,
innerLoginUrl
:
'https://uat-sso.yunqueyi.com/PICA_SSO_FE/html/pica_login.html'
,
followUpApi
:
''
,
basicDataUrl
:
'https://uat-sc.yunqueyi.com/'
,
},
pro
:
{
pro
:
{
baseUrl
:
'https://sc.yunqueyi.com/portal/'
,
qiniuFileUrl
:
"https://sc.yunqueyi.com/contents/admin/qiniu/token1"
,
qiniuResourceUrl
:
"https://videos.yunqueyi.com"
,
...
...
@@ -53,5 +57,6 @@ export const envConfig = {
loginUrl
:
'https://saas.yunqueyi.com/pica-login/work_station.html'
,
innerLoginUrl
:
'https://sso.yunqueyi.com/PICA_SSO_FE/html/pica_login.html'
,
followUpApi
:
''
,
basicDataUrl
:
'https://sc.yunqueyi.com/'
,
}
}
src/views/followup/record-manage/record-list.vue
浏览文件 @
184e71dd
...
...
@@ -123,6 +123,7 @@
import
BreadCrumb
from
"@/components/breadcrumb"
;
// import customTextarea from "@/components/followup/customTextarea";
import
followupDetail
from
"./dialog/followupDetail"
;
import
{
mapState
,
mapActions
}
from
'vuex'
;
export
default
{
components
:{
BreadCrumb
,
...
...
@@ -184,7 +185,20 @@
dialogDetailShow
:
false
,
}
},
computed
:
{
...
mapState
(
'reservationManage'
,{
constantsData
:
state
=>
state
.
constantsData
,
})
},
created
()
{
},
mounted
()
{
this
.
getConstantsData
({
numList
:
'P216'
})
},
methods
:
{
...
mapActions
(
'reservationManage'
,
[
'getConstantsData'
]),
search
(){
console
.
log
(
'搜索'
)
},
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录