From 9b2c74ee4f08fad01c2a16bc6e36df073bfa1dd5 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期五, 24 四月 2026 09:12:13 +0800
Subject: [PATCH] 推送

---
 src/views/project/donatebaseinfo/index.vue |   19 ++++++++++++-------
 1 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/src/views/project/donatebaseinfo/index.vue b/src/views/project/donatebaseinfo/index.vue
index 6c29d1c..96ceb21 100644
--- a/src/views/project/donatebaseinfo/index.vue
+++ b/src/views/project/donatebaseinfo/index.vue
@@ -10,7 +10,7 @@
     >
       <el-row :gutter="8">
         <el-col :span="5">
-          <el-form-item label="鎮h�呭鍚�" prop="name">
+          <el-form-item label="鎹愮尞鑰呭鍚�" prop="name">
             <el-input
               v-model="queryParams.name"
               placeholder="璇疯緭鍏ュ鍚�"
@@ -65,7 +65,6 @@
 
     <!-- 鎿嶄綔鎸夐挳 -->
     <el-row :gutter="10" class="mb8">
-
       <el-col :span="1.5">
         <el-button
           type="warning"
@@ -106,7 +105,7 @@
         prop="caseNo"
         width="200"
       />
-      <el-table-column label="濮撳悕" align="center" prop="name" width="100" />
+      <el-table-column label="鎹愮尞鑰呭鍚�" align="center" prop="name" width="100" />
       <el-table-column label="鎬у埆" align="center" prop="sex" width="100">
         <template slot-scope="scope">
           <dict-tag
@@ -135,7 +134,7 @@
         align="center"
         prop="treatmenthospitalname"
       />
-      <el-table-column label="GSC璇勫垎" align="center" prop="gcsScore" />
+      <el-table-column label="GCS璇勫垎" align="center" prop="gcsScore" />
       <el-table-column label="琛�鍨�" align="center" prop="bloodtype" width="100">
         <template slot-scope="scope">
           <dict-tag
@@ -535,9 +534,14 @@
     },
     /** 鎵撳紑缂栬緫寮圭獥 */
     handleOpenEdit(row) {
-      this.currentEditData = { ...row };
-      console.log(this.currentEditData, "this.currentEditData");
-      this.editModalVisible = true;
+      // 纭繚鍦ㄦ墦寮�寮规鍓嶉噸缃甤urrentEditData
+      this.currentEditData = {};
+
+      // 浣跨敤$nextTick纭繚DOM鏇存柊瀹屾垚
+      this.$nextTick(() => {
+        this.currentEditData = { ...row };
+        this.editModalVisible = true;
+      });
     },
 
     /** 澶勭悊缂栬緫鎴愬姛 */
@@ -549,6 +553,7 @@
     /** 澶勭悊缂栬緫寮圭獥鍏抽棴 */
     handleEditClosed() {
       this.currentEditData = {};
+      this.editModalVisible = false;
     },
 
     handleModalVisibleChange(newVisible) {

--
Gitblit v1.9.3