提交 014523b6 编写于 作者: xiaoping.di's avatar xiaoping.di

Merge branch 'feature/dxp' into 'develop'

Feature/dxp

See merge request !161
...@@ -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',
});
};
...@@ -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;
} }
...@@ -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 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册