提交 e6a16b96 编写于 作者: 张磊's avatar 张磊

wx appoint

上级 76d25855
...@@ -74,7 +74,10 @@ ...@@ -74,7 +74,10 @@
> >
<span>未选定医生</span> <span>未选定医生</span>
</div> </div>
<div class="work-info-Num"> <div
v-if="diagnoseType != 4"
class="work-info-Num"
>
<span <span
class="work-info-Num-span" class="work-info-Num-span"
>可选排班时间(预约已满需要沟通确定时间)</span> >可选排班时间(预约已满需要沟通确定时间)</span>
...@@ -314,7 +317,7 @@ ...@@ -314,7 +317,7 @@
}); });
return false; return false;
} }
if (this.startTime == '') { if (this.startTime == '' && this.diagnoseType != 4) {
this.$message({ this.$message({
message: '请选择排班时间', message: '请选择排班时间',
type: 'warning', type: 'warning',
...@@ -328,8 +331,8 @@ ...@@ -328,8 +331,8 @@
innerFlag: this.formData.innerFlag, innerFlag: this.formData.innerFlag,
receptionId: this.formData.receptionId, receptionId: this.formData.receptionId,
receptionName: this.formData.receptionName, receptionName: this.formData.receptionName,
receptionBeginTime: this.startTime, receptionBeginTime: this.startTime || '',
receptionEndTime: this.endTime, receptionEndTime: this.endTime || '',
diagnoseChannel: this.formData.diagnoseChannel, diagnoseChannel: this.formData.diagnoseChannel,
}; };
manualQueue(req) manualQueue(req)
......
...@@ -41,10 +41,7 @@ ...@@ -41,10 +41,7 @@
<span>分诊科室:{{ triageDepartment }}</span> <span>分诊科室:{{ triageDepartment }}</span>
</div> </div>
</div> </div>
<div <div class="work-info-Num">
v-if="diagnoseType != 4"
class="work-info-Num"
>
<span class="work-info-Num-span">可排班时间</span> <span class="work-info-Num-span">可排班时间</span>
<div class="time-list-show"> <div class="time-list-show">
<div <div
...@@ -246,7 +243,7 @@ ...@@ -246,7 +243,7 @@
this.chooseTimeIndex = index; this.chooseTimeIndex = index;
}, },
confirm() { confirm() {
if (this.startDate == '' && this.diagnoseType != 4) { if (this.startDate == '') {
this.$message({ this.$message({
message: '请选择排班时间', message: '请选择排班时间',
type: 'warning', type: 'warning',
...@@ -257,8 +254,8 @@ ...@@ -257,8 +254,8 @@
vm.isClick = true; vm.isClick = true;
const req = { const req = {
id: this.diagnoseLogId, id: this.diagnoseLogId,
assistantBeginTime: this.startDate || '', assistantBeginTime: this.startDate,
assistantEndTime: this.endDate || '', assistantEndTime: this.endDate,
}; };
outboundIntention(req) outboundIntention(req)
.then(function (res) { .then(function (res) {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册