This commit is contained in:
2023-11-14 15:38:18 +08:00
parent 807c197a6d
commit c3bf2fa4cb

View File

@ -74,11 +74,18 @@
}, {
name: '其它',
checked: false,
}]
}],
requestStatus: false,
}
},
methods: {
truetaskReturn() {
if (this.requestStatus) {
// return
return;
}
this.requestStatus = true;
setTimeout(() => {
if (this.list[4].checked && this.value) {
this.taskReturnReason += this.value + ';'
}
@ -88,6 +95,7 @@
}
closeHealthConsultationOrder(obj).then(res => {
if (res.code == 200) {
this.requestStatus = false;
this.$refs.uToast.show({
title: '工单退回成功',
type: 'success',
@ -96,6 +104,7 @@
})
}
})
}, 1600);
},
// checkbox
checkboxChange(e) {},