修复bug375:住院医生站点击“签发”按钮后系统提示语错误,显示为“保存成功”并且签发业务功能未实现。

bug376:【门诊医生站】检查页签申请单列表过滤异常,显示了历史检查就诊记录
bug377:【门诊医生站】检查申请单“执行科室”未获取配置默认值且字段交互逻辑不规范
This commit is contained in:
2026-04-16 10:25:12 +08:00
parent 6922aa1d2a
commit 210c463130
10 changed files with 179 additions and 29 deletions

View File

@@ -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 = {};