From 227a1d5cff4538bea8398e9f40cf07910a2fec78 Mon Sep 17 00:00:00 2001
From: lkk <364857242@qq.com>
Date: 星期二, 25 三月 2025 17:31:36 +0800
Subject: [PATCH] 11

---
 src/views/doctor/pacsCheck/index.vue |   36 +++++++++++++++++++++---------------
 1 files changed, 21 insertions(+), 15 deletions(-)

diff --git a/src/views/doctor/pacsCheck/index.vue b/src/views/doctor/pacsCheck/index.vue
index 6c05a19..255134d 100644
--- a/src/views/doctor/pacsCheck/index.vue
+++ b/src/views/doctor/pacsCheck/index.vue
@@ -17,7 +17,7 @@
           style="width: 170px"
         />
       </el-form-item>
-     <!--  <el-form-item label="濮撳悕" prop="name">
+      <!--  <el-form-item label="濮撳悕" prop="name">
         <el-input
           v-model="queryParams.name"
           placeholder="璇疯緭鍏ュ鍚�"
@@ -99,9 +99,8 @@
         align="center"
         label="閫夋嫨"
         width="40"
-      
       >
-      <!--   :selectable="isSelectable" -->
+        <!--   :selectable="isSelectable" -->
       </el-table-column>
 
       <el-table-column label="濮撳悕" align="center" prop="name" width="80px" />
@@ -254,7 +253,6 @@
   
   <script>
 import { getLeftList, getRightList, asyncPacs } from "@/api/doctor/pacsCheck";
-import moment from "moment";
 
 export default {
   dicts: ["dict_tj_status"],
@@ -330,21 +328,19 @@
     });
   },
   methods: {
-   
-    handleDateChange(val){
+    handleDateChange(val) {
       if (val && val.length === 2) {
         this.queryParams.start = val[0]; // 璁剧疆寮�濮嬫椂闂�
-        this.queryParams.end = val[1];   // 璁剧疆缁撴潫鏃堕棿
+        this.queryParams.end = val[1]; // 璁剧疆缁撴潫鏃堕棿
       } else {
         this.queryParams.start = null;
         this.queryParams.end = null;
       }
-      console.log('Query Params:', this.queryParams);
-
+      console.log("Query Params:", this.queryParams);
     },
-    isSelectable(row) {
-      return !!row.mzh;
-    },
+    // isSelectable(row) {
+    //   return !!row.mzh;
+    // },
     tableRowClassName({ row }) {
       return !row.mzh ? "row-disabled" : "";
     },
@@ -368,7 +364,17 @@
 
         this.selectedFirstTable = selectedRow;
         console.log("褰撳墠閫変腑鐨勮鏁版嵁:", this.selectedFirstTable);
-        this.fetchRightTableData(selectedRow);
+        const code = this.queryParams.tjNum;
+        if (!code) {
+          this.$message.warning("浣撴鍙蜂笉鑳戒负绌�!");
+          return; // 鐩存帴杩斿洖锛岄伩鍏嶇户缁墽琛岃姹�
+        }
+        this.loading = true;
+        getRightList(code).then((response) => {
+          this.checkList = response.data;
+          this.loading = false;
+        });
+        // this.fetchRightTableData(selectedRow);
       } else {
         this.selectedFirstTable = null;
         this.checkList = [];
@@ -414,7 +420,7 @@
           if (res.code == 200) {
             this.loading = false;
             this.exaLists = res.data;
-            this.code = this.exaLists.mzh;
+            // this.code = this.exaLists.mzh;
           }
         })
         .catch((error) => {
@@ -483,7 +489,7 @@
           this.clearTimeSet = null;
           this.$modal.closeLoading();
           // this.$modal.error("鎿嶄綔澶辫触锛岃绋嶅悗閲嶈瘯");
-        })
+        });
     },
   },
 };

--
Gitblit v1.8.0