676 [住院医生站-临床医嘱] 勾选“待签发”临时医嘱后,点击【签发】按钮无响应
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
新增
|
新增
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button type="primary" @click="handleSaveBatch()" :disabled="false"> 保存 </el-button>
|
<el-button type="primary" @click="handleSaveBatch()" :disabled="false"> 保存 </el-button>
|
||||||
<el-button type="primary" @click="handleSave()" :disabled="isSaveDisabled"> 签发 </el-button>
|
<el-button type="primary" :loading="loading || isSaving" :disabled="isSaveDisabled || loading || isSaving" @click="handleSave()"> 签发 </el-button>
|
||||||
<el-button type="warning" plain @click="handleSingOut()" :disabled="false">
|
<el-button type="warning" plain @click="handleSingOut()" :disabled="false">
|
||||||
撤回
|
撤回
|
||||||
</el-button>
|
</el-button>
|
||||||
@@ -1605,6 +1605,8 @@ function handleSave() {
|
|||||||
if (res.code === 200) {
|
if (res.code === 200) {
|
||||||
proxy.$modal.msgSuccess('签发成功');
|
proxy.$modal.msgSuccess('签发成功');
|
||||||
isSaving.value = false;
|
isSaving.value = false;
|
||||||
|
// 清除勾选状态
|
||||||
|
prescriptionRef.value?.clearCheckboxRow();
|
||||||
getListInfo(false);
|
getListInfo(false);
|
||||||
bindMethod.value = {};
|
bindMethod.value = {};
|
||||||
nextId.value == 1;
|
nextId.value == 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user