From cb3c799e1bd6a7cf5dd5c7e3cadee238bf67b729 Mon Sep 17 00:00:00 2001
From: WXL (wul) <wl_5969728@163.com>
Date: 星期五, 10 十月 2025 14:26:10 +0800
Subject: [PATCH] 随访详情本人所属功能及服务形式补偿流程组件维护

---
 src/views/patient/patient/behospitalized.vue |   64 +++++++++++++++++--------------
 1 files changed, 35 insertions(+), 29 deletions(-)

diff --git a/src/views/patient/patient/behospitalized.vue b/src/views/patient/patient/behospitalized.vue
index d5af2eb..a368496 100644
--- a/src/views/patient/patient/behospitalized.vue
+++ b/src/views/patient/patient/behospitalized.vue
@@ -47,7 +47,7 @@
           <el-form-item label="鎮h�呰寖鍥�" prop="status">
             <el-cascader
               v-model="queryParams.scopetype"
-              placeholder="榛樿鍏ㄩ儴"
+              placeholder="榛樿鍏ㄩ儴绉戝"
               :options="sourcetype"
               :props="{ expandTrigger: 'hover' }"
               @change="handleChange"
@@ -480,8 +480,8 @@
           YongHuXX: {
             XiTongID: "SUIFANGXT",
             XiTongMC: "闅忚绯荤粺",
-            YongHuID: "1400466972205912064",
-            YongHuXM: "JNRMYY",
+            YongHuID: localStorage.getItem("YongHuID"),
+            YongHuXM: localStorage.getItem("YongHuXM"),
             ZuZhiJGID: localStorage.getItem("orgid"),
             ZuZhiJGMC: localStorage.getItem("orgname"),
             idp: "lyra",
@@ -501,7 +501,11 @@
         },
         {
           value: 3,
-          label: "鍏ㄩ儴",
+          label: "鍏ㄩ儴绉戝",
+        },
+        {
+          value: 4,
+          label: "鍏ㄩ儴鐥呭尯",
         },
       ],
       // 琛ㄥ崟鍙傛暟
@@ -618,9 +622,6 @@
     },
   },
   created() {
-    this.getList();
-    this.listDept();
-    this.gettabList();
     this.sourcetype[0].children = store.getters.belongDepts.map((dept) => {
       return {
         label: dept.deptName,
@@ -633,18 +634,17 @@
         value: dept.districtCode,
       };
     });
+    this.queryParams.leaveldeptcodes = store.getters.belongDepts.map(
+      (obj) => obj.deptCode
+    );
+    this.getList();
+    // this.listDept();
+    this.gettabList();
   },
   methods: {
     /** 鏌ヨ鎮h�呭垪琛� */
     getList() {
       this.loading = true;
-      if (this.queryParams.searchscope == 3) {
-        this.queryParams.leaveldeptcodes = store.getters.belongDepts.map(
-          (obj) => obj.deptCode
-        );
-        this.queryParams.leavehospitaldistrictcodes =
-          store.getters.belongWards.map((obj) => obj.districtCode);
-      }
       listpatient(this.queryParams).then((response) => {
         console.log(response);
         this.userList = response.rows;
@@ -669,12 +669,17 @@
         this.queryParams.leaveldeptcodes.push(code);
         this.queryParams.leavehospitaldistrictcodes = [];
         this.queryParams.searchscope = 1;
-      } else if (type == 2) {
-        this.queryParams.leavehospitaldistrictcodes.push(code);
-        this.queryParams.leaveldeptcodes = [];
-        this.queryParams.searchscope = 2;
-      } else {
+      } else if (type == 3) {
+        this.queryParams.leaveldeptcodes = store.getters.belongDepts.map(
+          (obj) => obj.deptCode
+        );
         this.queryParams.searchscope = 3;
+        this.queryParams.leavehospitaldistrictcodes = [];
+      } else if (type == 4) {
+        this.queryParams.leaveldeptcodes = [];
+        this.queryParams.leavehospitaldistrictcodes =
+          store.getters.belongWards.map((obj) => obj.districtCode);
+        this.queryParams.searchscope = 4;
       }
     },
     /** 鏌ヨ鏍囩鍒楄〃 */
@@ -713,11 +718,10 @@
     },
     //鎮h��360璺宠浆
     gettoken360(sfzh, drcode, drname) {
+      // this.$modal.msgWarning('360鍔熻兘鏆傛湭寮�閫�');
+
       this.postData.YeWuXX.BingRenXX.ZhengJianHM = sfzh;
-      if (this.postData.XiaoXiTou.ZuHuMC == "涓芥按甯備腑鍖婚櫌") {
-        this.postData.YeWuXX.YongHuXX.YongHuID = "1400398571877961728";
-        this.postData.YeWuXX.YongHuXX.YongHuXM = "LSZYY";
-      }
+
       query360PatInfo(this.postData).then((res) => {
         if (res.data.url) {
           window.open(res.data.url, "_blank");
@@ -748,13 +752,12 @@
     },
     /** 鎼滅储鎸夐挳鎿嶄綔 */
     handleQuery() {
-
       if (this.dateRange) {
         this.queryParams.startInHospTime = this.dateRange[0];
         this.queryParams.endInHospTime = this.dateRange[1];
-      }else{
-        this.queryParams.startInHospTime = '';
-        this.queryParams.endInHospTime = '';
+      } else {
+        this.queryParams.startInHospTime = "";
+        this.queryParams.endInHospTime = "";
       }
       this.queryParams.pageNum = 1;
       this.getList();
@@ -772,7 +775,10 @@
         leaveldeptcodes: [],
         leavehospitaldistrictcodes: [],
       };
-        this.handleQuery();
+      this.queryParams.leaveldeptcodes = store.getters.belongDepts.map(
+      (obj) => obj.deptCode
+    );
+      this.handleQuery();
     },
     // 澶氶�夋閫変腑鏁版嵁
     handleSelectionChange(selection) {
@@ -942,6 +948,6 @@
   }
 }
 .button-textsc {
-  color: #28cfe6;
+  color: #3664D9;
 }
 </style>

--
Gitblit v1.9.3