From 60e49d600834344ae1b18357e76df74fbe160527 Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期一, 02 二月 2026 10:30:38 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
admin/src/components/business/OperaCasesListWindow.vue | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/admin/src/components/business/OperaCasesListWindow.vue b/admin/src/components/business/OperaCasesListWindow.vue
index edf5638..0d8225b 100644
--- a/admin/src/components/business/OperaCasesListWindow.vue
+++ b/admin/src/components/business/OperaCasesListWindow.vue
@@ -137,7 +137,10 @@
},
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) {
@@ -174,9 +177,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