Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-admin-consultation
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
com.pica.cloud.education.frontend
pica-admin-consultation
提交
f4f9d870
提交
f4f9d870
编写于
11月 09, 2021
作者:
xiaoping.di
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'feature/dxp' into 'develop'
Feature/dxp See merge request
!185
上级
a58e40c7
c219f510
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
30 行增加
和
17 行删除
+30
-17
table-serviceSchedule.vue
src/components/list/table-serviceSchedule.vue
+4
-4
index.js
src/router/index.js
+3
-3
newScheduling.vue
src/views/IM/diagnosis-admin/modal/newScheduling.vue
+23
-10
未找到文件。
src/components/list/table-serviceSchedule.vue
浏览文件 @
f4f9d870
...
@@ -271,20 +271,20 @@
...
@@ -271,20 +271,20 @@
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.table-serviceSchedule
{
.table-serviceSchedule
{
.el-table
{
.el-table
{
.nothing-data
{
.nothing-data
{
display
:
inline-grid
;
display
:
inline-grid
;
padding-top
:
100px
;
padding-top
:
100px
;
img
{
img
{
width
:
338px
;
width
:
338px
;
height
:
159px
;
height
:
159px
;
}
}
.nothing-data-title
{
.nothing-data-title
{
padding-top
:
40px
;
padding-top
:
40px
;
padding-bottom
:
150px
;
padding-bottom
:
150px
;
font-size
:
16px
;
font-size
:
16px
;
font-family
:
PingFangSC-Regular
,
PingFang
SC
;
font-family
:
PingFangSC-Regular
,
PingFang
SC
;
font-weight
:
400
;
font-weight
:
400
;
color
:
#89888
B
;
color
:
#89888
b
;
line-height
:
22px
;
line-height
:
22px
;
}
}
}
}
...
...
src/router/index.js
浏览文件 @
f4f9d870
...
@@ -68,13 +68,13 @@ const serviceSchedule = (r) =>
...
@@ -68,13 +68,13 @@ const serviceSchedule = (r) =>
()
=>
r
(
require
(
'@/views/IM/diagnosis-admin/serviceSchedule.vue'
)),
()
=>
r
(
require
(
'@/views/IM/diagnosis-admin/serviceSchedule.vue'
)),
'serviceSchedule'
'serviceSchedule'
);
);
const
addEditSchedule
=
(
r
)
=>
const
addEditSchedule
=
(
r
)
=>
require
.
ensure
(
require
.
ensure
(
[],
[],
()
=>
r
(
require
(
'@/views/IM/diagnosis-admin/addEditSchedule.vue'
)),
()
=>
r
(
require
(
'@/views/IM/diagnosis-admin/addEditSchedule.vue'
)),
'addEditSchedule'
'addEditSchedule'
);
);
const
overviewScheduling
=
(
r
)
=>
const
overviewScheduling
=
(
r
)
=>
require
.
ensure
(
require
.
ensure
(
[],
[],
()
=>
r
(
require
(
'@/views/IM/diagnosis-admin/overviewScheduling.vue'
)),
()
=>
r
(
require
(
'@/views/IM/diagnosis-admin/overviewScheduling.vue'
)),
...
@@ -171,4 +171,4 @@ if (process.env.VUE_APP_ENV == 'uat') {
...
@@ -171,4 +171,4 @@ if (process.env.VUE_APP_ENV == 'uat') {
routerConfig
:
routerConfig
,
routerConfig
:
routerConfig
,
};
};
handleAllRouter
(
routerInfo
);
handleAllRouter
(
routerInfo
);
}
}
\ No newline at end of file
src/views/IM/diagnosis-admin/modal/newScheduling.vue
浏览文件 @
f4f9d870
...
@@ -361,6 +361,7 @@
...
@@ -361,6 +361,7 @@
const
objParms
=
{};
const
objParms
=
{};
objParms
.
doctorId
=
this
.
doctorId
;
objParms
.
doctorId
=
this
.
doctorId
;
objParms
.
week
=
type
==
1
?
copyWeek
:
this
.
week
;
objParms
.
week
=
type
==
1
?
copyWeek
:
this
.
week
;
// type == 1 表示 copy
objParms
.
workId
=
this
.
id
;
objParms
.
workId
=
this
.
id
;
console
.
log
(
objParms
.
week
,
'objParms.week'
);
console
.
log
(
objParms
.
week
,
'objParms.week'
);
dutyRosterQuery
(
objParms
).
then
((
res
)
=>
{
dutyRosterQuery
(
objParms
).
then
((
res
)
=>
{
...
@@ -371,16 +372,28 @@
...
@@ -371,16 +372,28 @@
this
.
getWeekMax
(
res
.
data
);
this
.
getWeekMax
(
res
.
data
);
}
}
this
.
handleInitData
(
res
.
data
);
this
.
handleInitData
(
res
.
data
);
if
(
res
.
data
.
countList
.
length
>
0
&&
type
!=
1
)
{
if
(
type
!=
1
)
{
const
newAR
=
res
.
data
.
countList
.
map
((
item
,
index
)
=>
{
if
(
res
.
data
.
countList
.
length
>
0
)
{
if
(
item
.
weekDay
==
this
.
maxList
[
index
].
weekDay
)
{
const
newAR
=
res
.
data
.
countList
.
map
((
item
,
index
)
=>
{
return
{
if
(
item
.
weekDay
==
this
.
maxList
[
index
].
weekDay
)
{
preNum
:
item
.
preNum
,
return
{
};
preNum
:
item
.
preNum
,
}
};
});
}
this
.
maxList
=
newAR
;
});
console
.
log
(
newAR
,
'newAR'
);
this
.
maxList
=
newAR
;
console
.
log
(
newAR
,
'newAR'
);
}
else
{
this
.
maxList
=
[
{
preNum
:
0
},
{
preNum
:
0
},
{
preNum
:
0
},
{
preNum
:
0
},
{
preNum
:
0
},
{
preNum
:
0
},
{
preNum
:
0
},
];
}
}
}
}
else
{
}
else
{
this
.
$toast
(
res
.
message
);
this
.
$toast
(
res
.
message
);
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录