From 5e1745487b290612c6282006822b431843a081af Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期四, 15 五月 2025 14:49:36 +0800
Subject: [PATCH] 测试完成

---
 src/views/patient/patient/behospitalized.vue |   48 ++++++++++++++++++++++++++++++++++--------------
 1 files changed, 34 insertions(+), 14 deletions(-)

diff --git a/src/views/patient/patient/behospitalized.vue b/src/views/patient/patient/behospitalized.vue
index b3f9181..d7700f7 100644
--- a/src/views/patient/patient/behospitalized.vue
+++ b/src/views/patient/patient/behospitalized.vue
@@ -168,7 +168,13 @@
               <el-button
                 size="medium"
                 type="text"
-                @click="gettoken360(scope.row.idcardno,scope.row.drcode,scope.row.drname)"
+                @click="
+                  gettoken360(
+                    scope.row.idcardno,
+                    scope.row.drcode,
+                    scope.row.drname
+                  )
+                "
                 ><span class="button-textsc">{{
                   scope.row.patname
                 }}</span></el-button
@@ -612,9 +618,6 @@
     },
   },
   created() {
-    this.getList();
-    this.listDept();
-    this.gettabList();
     this.sourcetype[0].children = store.getters.belongDepts.map((dept) => {
       return {
         label: dept.deptName,
@@ -627,6 +630,15 @@
         value: dept.districtCode,
       };
     });
+    this.queryParams.leaveldeptcodes = store.getters.belongDepts.map(
+      (obj) => obj.deptCode
+    );
+    this.queryParams.leavehospitaldistrictcodes = store.getters.belongWards.map(
+      (obj) => obj.districtCode
+    );
+    this.getList();
+    this.listDept();
+    this.gettabList();
   },
   methods: {
     /** 鏌ヨ鎮h�呭垪琛� */
@@ -706,11 +718,11 @@
       this.handleQuery();
     },
     //鎮h��360璺宠浆
-    gettoken360(sfzh,drcode,drname) {
+    gettoken360(sfzh, drcode, drname) {
       this.postData.YeWuXX.BingRenXX.ZhengJianHM = sfzh;
-      if (this.postData.XiaoXiTou.ZuHuMC=='涓芥按甯備腑鍖婚櫌') {
-        this.postData.YeWuXX.YongHuXX.YongHuID = '1400398571877961728';
-        this.postData.YeWuXX.YongHuXX.YongHuXM = 'LSZYY';
+      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) {
@@ -742,8 +754,13 @@
     },
     /** 鎼滅储鎸夐挳鎿嶄綔 */
     handleQuery() {
-      this.queryParams.startInHospTime = this.dateRange[0];
-      this.queryParams.endInHospTime = this.dateRange[1];
+      if (this.dateRange) {
+        this.queryParams.startInHospTime = this.dateRange[0];
+        this.queryParams.endInHospTime = this.dateRange[1];
+      } else {
+        this.queryParams.startInHospTime = "";
+        this.queryParams.endInHospTime = "";
+      }
       this.queryParams.pageNum = 1;
       this.getList();
     },
@@ -751,13 +768,16 @@
     resetQuery() {
       this.dateRange = [];
       this.resetForm("queryForm");
-      (this.queryParams = {
+      this.queryParams = {
         pageNum: 1,
         pageSize: 10,
         cry: 0,
-        searchscope: 2,
-      }),
-        this.handleQuery();
+        searchscope: 3,
+        scopetype: [],
+        leaveldeptcodes: [],
+        leavehospitaldistrictcodes: [],
+      };
+      this.handleQuery();
     },
     // 澶氶�夋閫変腑鏁版嵁
     handleSelectionChange(selection) {

--
Gitblit v1.9.3