From f1336af7af2225820ac9a8dc6dfcf501e4d4cd7b Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期三, 06 十二月 2023 09:05:16 +0800
Subject: [PATCH] 系统左侧菜单,hover背景色bug处理
---
Source/UBCS-WEB/src/views/monitor/log/localLog.vue | 15 ++++++++-------
1 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/Source/UBCS-WEB/src/views/monitor/log/localLog.vue b/Source/UBCS-WEB/src/views/monitor/log/localLog.vue
index 90d9130..d4c1d7b 100644
--- a/Source/UBCS-WEB/src/views/monitor/log/localLog.vue
+++ b/Source/UBCS-WEB/src/views/monitor/log/localLog.vue
@@ -69,7 +69,7 @@
// menuWidth: 300,
dialogClickModal: false,
highlightCurrentRow: true, //琛岄�変腑鏃堕珮浜�
- rowKey: "logName", //琛屾暟鎹殑 Key锛岀敤鏉ヤ紭鍖� Table 鐨勬覆鏌�
+ rowKey: "randomOid", //琛屾暟鎹殑 Key锛岀敤鏉ヤ紭鍖� Table 鐨勬覆鏌�
column: [
{
label: "鏈嶅姟鍚嶇О",
@@ -90,21 +90,22 @@
{
label: "鏃ュ織鍚嶇О",
prop: "logName",
- width:'80',
+ width:'160',
},
{
label: "鏃ュ織绫诲瀷",
- prop: "logType"
+ prop: "logType",
+ width:'160'
},
{
label: "鍒涘缓鏃堕棿",
prop: "createTime",
- width:'180'
+ width:'160'
},
{
label: "鏈�鍚庝慨鏀规椂闂�",
prop: "lastModifier",
- width:'180'
+ width:'160'
}
]
},
@@ -117,7 +118,7 @@
permissionList() {
return {
delBtn: this.vaildData(this.permission.localLog.localLog_delete, false),
- downLoadBtn: this.vaildData(this.permission.localLog.localLog_dwonload, false)
+ downLoadBtn: this.vaildData(this.permission.localLog.localLog_download, false)
};
}
},
@@ -125,7 +126,7 @@
downLoadLogFile(row){
this.downloadLoading = true;
- let logPath = row.hasChildren ? row.logPath:row.logPath+"\\"+row.logName;
+ let logPath = row.hasChildren ? row.logPath:row.logPath+"\\"+row.logName;
downLoadLog(Object.assign({},row,{logFullPaths:logPath})).then(res=>{
func.downloadFileByBlobHandler(res);
this.downloadLoading = false;
--
Gitblit v1.9.3