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

wx appoint

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