修复bug375:住院医生站点击“签发”按钮后系统提示语错误,显示为“保存成功”并且签发业务功能未实现。
bug376:【门诊医生站】检查页签申请单列表过滤异常,显示了历史检查就诊记录 bug377:【门诊医生站】检查申请单“执行科室”未获取配置默认值且字段交互逻辑不规范
This commit is contained in:
@@ -833,7 +833,16 @@ function handleSave() {
|
||||
isAdding.value = false;
|
||||
expandOrder.value = [];
|
||||
}
|
||||
let saveList = prescriptionList.value.filter((item) => {
|
||||
|
||||
const selectedRows = prescriptionRef.value ? prescriptionRef.value.getSelectionRows() : [];
|
||||
let sourceList = [];
|
||||
if (selectedRows.length > 0) {
|
||||
sourceList = selectedRows;
|
||||
} else {
|
||||
sourceList = prescriptionList.value;
|
||||
}
|
||||
|
||||
let saveList = sourceList.filter((item) => {
|
||||
return item.statusEnum == 1;
|
||||
});
|
||||
|
||||
@@ -907,7 +916,7 @@ function handleSave() {
|
||||
})
|
||||
.then((res) => {
|
||||
if (res.code === 200) {
|
||||
proxy.$modal.msgSuccess('保存成功');
|
||||
proxy.$modal.msgSuccess('签发成功');
|
||||
isSaving.value = false;
|
||||
getListInfo(false);
|
||||
bindMethod.value = {};
|
||||
|
||||
Reference in New Issue
Block a user