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
提交
014523b6
提交
014523b6
编写于
10月 26, 2021
作者:
xiaoping.di
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'feature/dxp' into 'develop'
Feature/dxp See merge request
!161
上级
0d29398d
f6e8fe59
变更
4
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
233 行增加
和
104 行删除
+233
-104
serviceSchedule.js
src/api/serviceSchedule.js
+29
-15
index.scss
src/views/IM/diagnosis-admin/modal/index.scss
+36
-2
newScheduling.vue
src/views/IM/diagnosis-admin/modal/newScheduling.vue
+166
-87
serviceSchedule.vue
src/views/IM/diagnosis-admin/serviceSchedule.vue
+2
-0
未找到文件。
src/api/serviceSchedule.js
浏览文件 @
014523b6
...
@@ -12,29 +12,43 @@ export const childLabelList = async (data) => {
...
@@ -12,29 +12,43 @@ export const childLabelList = async (data) => {
method
:
'get'
,
method
:
'get'
,
});
});
};
};
export
const
workQuery
=
async
(
data
)
=>
{
export
const
workQuery
=
async
(
data
)
=>
{
return
request
({
return
request
({
url
:
'/diagnose/doctor/work/workQuery'
,
url
:
'/diagnose/doctor/work/workQuery'
,
data
:
data
,
data
:
data
,
method
:
'post'
,
method
:
'post'
,
});
});
};
};
export
const
switchOpen
=
async
(
data
)
=>
{
export
const
switchOpen
=
async
(
data
)
=>
{
return
request
({
return
request
({
url
:
'/diagnose/doctor/work/switchOpen'
,
url
:
'/diagnose/doctor/work/switchOpen'
,
data
:
data
,
data
:
data
,
method
:
'post'
,
method
:
'post'
,
});
});
};
};
export
const
workInStep
=
async
()
=>
{
export
const
workInStep
=
async
()
=>
{
return
request
({
return
request
({
url
:
'/diagnose/doctor/work/inStep'
,
url
:
'/diagnose/doctor/work/inStep'
,
method
:
'post'
,
method
:
'post'
,
});
});
};
};
export
const
getLevel
=
async
()
=>
{
export
const
getLevel
=
async
()
=>
{
return
request
({
return
request
({
url
:
'/diagnose/doctor/work/getLevel'
,
url
:
'/diagnose/doctor/work/getLevel'
,
method
:
'post'
,
method
:
'post'
,
});
});
};
};
\ No newline at end of file
export
const
dutyRosterQuery
=
async
(
data
)
=>
{
return
request
({
url
:
'/diagnose/doctor/work/dutyRosterQuery'
,
data
:
data
,
method
:
'post'
,
});
};
export
const
saveDutyRoster
=
async
(
data
)
=>
{
return
request
({
url
:
'/diagnose/doctor/work/saveDutyRoster'
,
data
:
data
,
method
:
'post'
,
});
};
src/views/IM/diagnosis-admin/modal/index.scss
浏览文件 @
014523b6
...
@@ -14,6 +14,29 @@
...
@@ -14,6 +14,29 @@
background
:
#fff
;
background
:
#fff
;
border-radius
:
6px
;
border-radius
:
6px
;
}
}
.ag-left-change
{
// position: relative;
// border:1px solid #ccc;
// height:40px;
// width:100%;
// display:flex;
// z-index:1;
div
{
width
:
130px
;
height
:
40px
;
//border: 1px solid #ccc;
}
.ag-left1
{
position
:
absolute
;
right
:
140px
;
top
:
20px
;
}
.ag-left2
{
position
:
absolute
;
right
:
20px
;
top
:
20px
;
}
}
.agment-left-con
{
.agment-left-con
{
margin-top
:
70px
;
margin-top
:
70px
;
background
:
#f0f2f5
;
background
:
#f0f2f5
;
...
@@ -104,10 +127,21 @@
...
@@ -104,10 +127,21 @@
background
:
#fff
;
background
:
#fff
;
color
:
#02120f
;
color
:
#02120f
;
border-color
:
#d9d9d9
;
border-color
:
#d9d9d9
;
border-radius
:
8px
;
border-radius
:
20px
;
padding
:
1
.3px
5px
;
padding
:
6px
16px
;
}
/
deep
/
.fc-myCustomButton-button
{
padding
:
6px
24px
;
}
}
/
deep
/
.fc-button-primary
:hover
{
/
deep
/
.fc-button-primary
:hover
{
background
:
#fff
;
background
:
#fff
;
color
:
#02120f
;
color
:
#02120f
;
border
:
1px
solid
#0d9078
;
}
/
deep
/
.fc-event-time
{
padding
:
5px
;
font-size
:
18px
;
color
:
#0d9078
;
word-wrap
:
break-word
;
white-space
:
normal
;
}
}
src/views/IM/diagnosis-admin/modal/newScheduling.vue
浏览文件 @
014523b6
此差异已折叠。
点击以展开。
src/views/IM/diagnosis-admin/serviceSchedule.vue
浏览文件 @
014523b6
...
@@ -150,8 +150,10 @@
...
@@ -150,8 +150,10 @@
<div
class=
"serviceSchedule-container"
>
<div
class=
"serviceSchedule-container"
>
<div
class=
"serviceSchedule-containerInfo"
>
<div
class=
"serviceSchedule-containerInfo"
>
<NewScheduling
<NewScheduling
:create-list=
"newCreateList"
:scheduling-type-value=
"schedulingTypeValue"
:scheduling-type-value=
"schedulingTypeValue"
:scheduling-type=
"schedulingType"
:scheduling-type=
"schedulingType"
@
goBack=
"goBack"
/>
/>
</div>
</div>
</div>
</div>
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录