From 97158794d69fd2beee1bf27577aa7cadea8d847d Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期三, 04 二月 2026 16:08:45 +0800
Subject: [PATCH] 优化

---
 admin/src/components/business/OperaCasesListWindow.vue |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/admin/src/components/business/OperaCasesListWindow.vue b/admin/src/components/business/OperaCasesListWindow.vue
index edf5638..bc0560c 100644
--- a/admin/src/components/business/OperaCasesListWindow.vue
+++ b/admin/src/components/business/OperaCasesListWindow.vue
@@ -110,7 +110,8 @@
         containDeleted: 1,
         name: '',
         importId: '',
-        status: null
+        status: null,
+        memberId: null
       },
       memberList: []
     }
@@ -137,13 +138,17 @@
     },
     getTableHeight(){
       this.$nextTick(() => {
-        this.tableHeight = window.innerHeight - 180- document.getElementById('curSearchForm').clientHeight
+        this.tableHeight = window.innerHeight - 180;
+        if(document.getElementById('curSearchForm')){
+          this.tableHeight = this.tableHeight - document.getElementById('curSearchForm').clientHeight
+        }
       })
     },
     open (title, memberId, importId) {
       this.title = title
       this.visible = true
       this.getTableHeight()
+      this.searchForm.memberId = memberId
       this.tableData = {
         // 宸查�変腑鐨勬暟鎹�
         selectedRows: [],
@@ -174,9 +179,9 @@
 </style>
 <style  >
 .success-row {
-  background: #f0f9eb; /* 娴呯豢鑹茶儗鏅� */
+  background: #f0f9eb  !important; /* 娴呯豢鑹茶儗鏅� */
 }
 .warning-row {
-  background: rgba(161, 14, 14, 0.35); /* 娴呯孩鑹茶儗鏅� */
+  background: rgba(161, 14, 14, 0.35)  !important; /* 娴呯孩鑹茶儗鏅� */
 }
 </style>

--
Gitblit v1.9.3