From 20043e072aee67f1162a5d490c063cadc2e1dcde Mon Sep 17 00:00:00 2001
From: WXL (wul) <wl_5969728@163.com>
Date: 星期六, 09 五月 2026 14:21:41 +0800
Subject: [PATCH] 测试完成
---
src/views/patient/propaganda/QuestionnaireTask.vue | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/src/views/patient/propaganda/QuestionnaireTask.vue b/src/views/patient/propaganda/QuestionnaireTask.vue
index 1b4d397..80b2bc3 100644
--- a/src/views/patient/propaganda/QuestionnaireTask.vue
+++ b/src/views/patient/propaganda/QuestionnaireTask.vue
@@ -1299,7 +1299,7 @@
this.form.serviceType == 15
) {
this.checkboxlist = [
- {
+ {
value: "1",
label: "浜哄伐",
},
@@ -1369,6 +1369,7 @@
this.form.serviceType == 3 ||
this.form.serviceType == 5 ||
this.form.serviceType == 16 ||
+ this.form.serviceType == 18 ||
this.form.serviceType == 4
) {
this.checkboxlist = [
@@ -1521,6 +1522,9 @@
// this.form.opcode = this.operationcodes.join(",");
this.form.icd10code = this.diagglist
.map((item) => item.icdcode)
+ .join(",");
+ this.form.icd10name = this.diagglist
+ .map((item) => item.icdname)
.join(",");
Editsingletask(this.form).then((res) => {
if (res.code == 200) {
@@ -1872,7 +1876,10 @@
return;
}
- if (this.patientqueryParams.searchscope == 1) {
+ if (
+ this.patientqueryParams.searchscope == 1 ||
+ this.patientqueryParams.allhosp == 2
+ ) {
this.patientqueryParams.leaveldeptcodes = store.getters.belongDepts.map(
(obj) => obj.deptCode
);
--
Gitblit v1.9.3