From 38d111cb6defedff3bf06314ca30d22a01faae22 Mon Sep 17 00:00:00 2001
From: rk <94314517@qq.com>
Date: 星期一, 09 二月 2026 16:30:36 +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