From 6f1e7a63fa6afc261ba2247bf1d56f59dbb9f4c9 Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期四, 07 八月 2025 17:29:46 +0800
Subject: [PATCH] 测试完成

---
 src/views/patient/patient/hospital.vue |   50 ++++++++++++++++++++++++++++++++++++--------------
 1 files changed, 36 insertions(+), 14 deletions(-)

diff --git a/src/views/patient/patient/hospital.vue b/src/views/patient/patient/hospital.vue
index 80ce156..de94d9e 100644
--- a/src/views/patient/patient/hospital.vue
+++ b/src/views/patient/patient/hospital.vue
@@ -45,11 +45,20 @@
               @keyup.enter.native="handleQuery"
             />
           </el-form-item>
+          <el-form-item label="绉戝鍚嶇О" prop="inhospno">
+            <el-input
+              v-model="queryParams.deptname"
+              placeholder="璇疯緭鍏ョ瀹ゅ悕绉�"
+              clearable
+              style="width: 250px"
+              @keyup.enter.native="handleQuery"
+            />
+          </el-form-item>
 
           <el-form-item label="鎮h�呰寖鍥�" prop="status">
             <el-cascader
               v-model="queryParams.scopetype"
-              placeholder="榛樿鍏ㄩ儴"
+              placeholder="榛樿鍏ㄩ儴绉戝"
               :options="sourcetype"
               :props="{ expandTrigger: 'hover' }"
               @change="handleChange"
@@ -256,6 +265,13 @@
             align="center"
             key="bedNo"
             prop="bedNo"
+            width="120"
+          />
+          <el-table-column
+            label="缁忕鍖荤敓"
+            align="center"
+            key="managementDoctor"
+            prop="managementDoctor"
             width="120"
           />
           <el-table-column
@@ -533,7 +549,11 @@
         },
         {
           value: 3,
-          label: "鍏ㄩ儴",
+          label: "鍏ㄩ儴绉戝",
+        },
+        {
+          value: 4,
+          label: "鍏ㄩ儴鐥呭尯",
         },
       ],
       //瀵煎叆杩涘害
@@ -610,23 +630,13 @@
     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.listDept();
     this.gettabList();
   },
   methods: {
     /** 鏌ヨ鎮h�呭垪琛� */
     getList() {
-      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);
-      }
       this.loading = true;
       listpatient(this.queryParams).then((response) => {
         console.log(response);
@@ -686,8 +696,17 @@
         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;
       }
     },
     // 鏌ヨ瀵煎叆灞曠ず鍒楄〃
@@ -755,6 +774,9 @@
         leaveldeptcodes: [],
         leavehospitaldistrictcodes: [],
       };
+      this.queryParams.leaveldeptcodes = store.getters.belongDepts.map(
+      (obj) => obj.deptCode
+    );
       this.handleQuery();
     },
     // 澶氶�夋閫変腑鏁版嵁

--
Gitblit v1.9.3