From 32674b04eb3cb387d54303f4a58f9b4c3a851ed2 Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期二, 04 三月 2025 18:09:34 +0800
Subject: [PATCH] 测试完成

---
 src/views/followvisit/outpatient/index.vue             |    1 +
 src/views/patient/physical/index.vue                   |    1 +
 src/views/patient/propaganda/index.vue                 |    2 ++
 src/views/followvisit/record/detailpage/index.vue      |    3 +++
 src/views/patient/medtechnician/SpecializedService.vue |    1 +
 src/views/patient/patient/profile/index.vue            |    1 +
 src/views/patient/questionnaire/index.vue              |    1 +
 src/views/patient/subsequent/index.vue                 |    1 +
 src/views/followvisit/discharge/index.vue              |    3 ++-
 src/views/patient/ycquestionnaire/index.vue            |    1 +
 10 files changed, 14 insertions(+), 1 deletions(-)

diff --git a/src/views/followvisit/discharge/index.vue b/src/views/followvisit/discharge/index.vue
index bd506c2..302d46c 100644
--- a/src/views/followvisit/discharge/index.vue
+++ b/src/views/followvisit/discharge/index.vue
@@ -888,6 +888,7 @@
         console.log(this.topqueryParams.leavehospitaldistrictcodes, "11");
       }
       this.loading = true;
+      this.topqueryParams.deptOrDistrict=2;
       getTaskservelist(this.topqueryParams).then((response) => {
         this.userList = response.rows[0].serviceSubtaskList;
         this.total = response.total;
@@ -1086,7 +1087,7 @@
         pageNum: 1,
         pageSize: 10,
         serviceType: 2,
-        searchscope: 2,
+        searchscope: 3,
       };
       this.handleQuery(1);
     },
diff --git a/src/views/followvisit/outpatient/index.vue b/src/views/followvisit/outpatient/index.vue
index e5a5e8a..71c8090 100644
--- a/src/views/followvisit/outpatient/index.vue
+++ b/src/views/followvisit/outpatient/index.vue
@@ -660,6 +660,7 @@
     /** 鏌ヨ闂ㄨ瘖闅忚鍒楄〃 */
     getList() {
       this.loading = true;
+      this.topqueryParams.deptOrDistrict=2;
       getTaskservelist(this.topqueryParams).then(
         (response) => {
           this.userList = response.rows;
diff --git a/src/views/followvisit/record/detailpage/index.vue b/src/views/followvisit/record/detailpage/index.vue
index 6e7ae29..841aca6 100644
--- a/src/views/followvisit/record/detailpage/index.vue
+++ b/src/views/followvisit/record/detailpage/index.vue
@@ -637,6 +637,7 @@
       getTaskservelist({
         patid: this.patid,
         taskid: taskid,
+        deptOrDistrict:2,
       }).then((res) => {
         if (res.code == 200) {
           this.logsheetlist = res.rows[0].serviceSubtaskList;
@@ -654,6 +655,7 @@
       getTaskservelist({
         patid: this.patid,
         taskid: this.taskid,
+        deptOrDistrict:2,
       }).then((res) => {
         if (res.code == 200) {
           objson = res.rows[0].serviceSubtaskList[0];
@@ -672,6 +674,7 @@
       getTaskservelist({
         patid: this.patid,
         taskid: this.taskid,
+        deptOrDistrict:2,
       }).then((res) => {
         if (res.code == 200) {
           objson = res.rows[0].serviceSubtaskList[0];
diff --git a/src/views/patient/medtechnician/SpecializedService.vue b/src/views/patient/medtechnician/SpecializedService.vue
index 996e241..7b465dd 100644
--- a/src/views/patient/medtechnician/SpecializedService.vue
+++ b/src/views/patient/medtechnician/SpecializedService.vue
@@ -834,6 +834,7 @@
           store.getters.belongWards.map((obj) => obj.districtCode);
       }
       this.loading = true;
+      this.topqueryParams.deptOrDistrict=2;
       getTaskservelist(this.topqueryParams).then((response) => {
         this.userList = response.rows[0].serviceSubtaskList;
         this.cardlist[0].value =
diff --git a/src/views/patient/patient/profile/index.vue b/src/views/patient/patient/profile/index.vue
index 0148437..f45d906 100644
--- a/src/views/patient/patient/profile/index.vue
+++ b/src/views/patient/patient/profile/index.vue
@@ -1238,6 +1238,7 @@
     handleClickfw(){
       getTaskservelist({
         patid: this.id,
+        deptOrDistrict:2,
       }).then((res) => {
         if (res.code == 200) {
           this.record = res.rows[0].serviceSubtaskList;
diff --git a/src/views/patient/physical/index.vue b/src/views/patient/physical/index.vue
index 5532a90..dc1e89c 100644
--- a/src/views/patient/physical/index.vue
+++ b/src/views/patient/physical/index.vue
@@ -866,6 +866,7 @@
         console.log(this.topqueryParams.leavehospitaldistrictcodes, "11");
       }
       this.loading = true;
+      this.topqueryParams.deptOrDistrict=2;
       getTaskservelist(this.topqueryParams).then((response) => {
         this.userList = response.rows[0].serviceSubtaskList;
         this.total = response.total;
diff --git a/src/views/patient/propaganda/index.vue b/src/views/patient/propaganda/index.vue
index e403f2f..0131541 100644
--- a/src/views/patient/propaganda/index.vue
+++ b/src/views/patient/propaganda/index.vue
@@ -806,6 +806,8 @@
           store.getters.belongWards.map((obj) => obj.districtCode);
       }
       this.loading = true;
+      this.topqueryParams.deptOrDistrict=2;
+
       getTaskservelist(this.topqueryParams).then((response) => {
         this.userList = response.rows[0].serviceSubtaskList;
         this.userList.forEach((item) => {
diff --git a/src/views/patient/questionnaire/index.vue b/src/views/patient/questionnaire/index.vue
index 0231e0a..2dc63d8 100644
--- a/src/views/patient/questionnaire/index.vue
+++ b/src/views/patient/questionnaire/index.vue
@@ -866,6 +866,7 @@
         console.log(this.topqueryParams.leavehospitaldistrictcodes, "11");
       }
       this.loading = true;
+      this.topqueryParams.deptOrDistrict=2;
       getTaskservelist(this.topqueryParams).then((response) => {
         this.userList = response.rows[0].serviceSubtaskList;
         this.total = response.total;
diff --git a/src/views/patient/subsequent/index.vue b/src/views/patient/subsequent/index.vue
index a48448d..2ea5237 100644
--- a/src/views/patient/subsequent/index.vue
+++ b/src/views/patient/subsequent/index.vue
@@ -702,6 +702,7 @@
     /** 鏌ヨ闂ㄨ瘖闅忚鍒楄〃 */
     getList() {
       this.loading = true;
+      this.topqueryParams.deptOrDistrict=2;
       getTaskservelist(this.topqueryParams).then((response) => {
         this.userList = response.rows;
         this.total = response.total;
diff --git a/src/views/patient/ycquestionnaire/index.vue b/src/views/patient/ycquestionnaire/index.vue
index 9a62f9a..55b089c 100644
--- a/src/views/patient/ycquestionnaire/index.vue
+++ b/src/views/patient/ycquestionnaire/index.vue
@@ -866,6 +866,7 @@
         console.log(this.topqueryParams.leavehospitaldistrictcodes, "11");
       }
       this.loading = true;
+      this.topqueryParams.deptOrDistrict=2;
       getTaskservelist(this.topqueryParams).then((response) => {
         this.userList = response.rows[0].serviceSubtaskList;
         this.total = response.total;

--
Gitblit v1.9.3