From 5e5f54f08753519a8b48cee88e5139bd11b0761f Mon Sep 17 00:00:00 2001 From: shiziyuan9527 Date: Tue, 11 Oct 2022 17:37:20 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E7=B3=BB=E7=BB=9F=E8=AE=BE=E7=BD=AE):=20?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E6=97=A5=E5=BF=97=E5=88=97=E8=A1=A8=E5=8A=A0?= =?UTF-8?q?=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1017725 --user=李玉号 【系统设置】系统设置-工作空间-操作日志:会有闪一下的系统操作日志记录(看附件录屏) https://www.tapd.cn/55049933/s/1258685 --- .../{system/log => common}/LogDetail.vue | 2 +- .../business/{system/log => common}/config.js | 0 .../src/business/system/log/OperatingLog.vue | 26 +- .../business/workspace/log/OperatingLog.vue | 362 ++++++++++++++++++ .../frontend/src/router/modules/setting.js | 2 +- 5 files changed, 368 insertions(+), 24 deletions(-) rename system-setting/frontend/src/business/{system/log => common}/LogDetail.vue (99%) rename system-setting/frontend/src/business/{system/log => common}/config.js (100%) create mode 100644 system-setting/frontend/src/business/workspace/log/OperatingLog.vue diff --git a/system-setting/frontend/src/business/system/log/LogDetail.vue b/system-setting/frontend/src/business/common/LogDetail.vue similarity index 99% rename from system-setting/frontend/src/business/system/log/LogDetail.vue rename to system-setting/frontend/src/business/common/LogDetail.vue index 6a06987192..b844b395e4 100644 --- a/system-setting/frontend/src/business/system/log/LogDetail.vue +++ b/system-setting/frontend/src/business/common/LogDetail.vue @@ -52,7 +52,7 @@ + + diff --git a/system-setting/frontend/src/router/modules/setting.js b/system-setting/frontend/src/router/modules/setting.js index 2c5ddb51c9..1f18c8815a 100644 --- a/system-setting/frontend/src/router/modules/setting.js +++ b/system-setting/frontend/src/router/modules/setting.js @@ -105,7 +105,7 @@ const Setting = { }, { path: 'operatingLog/workspace', - component: () => import('../../business/system/log/OperatingLog'), + component: () => import('../../business/workspace/log/OperatingLog'), name: 'workspace', meta: {workspace: true, title: 'operating_log.title', permissions: ['WORKSPACE_OPERATING_LOG:READ']} },