From 2e472dad93690bc96a173b00b8ae855cf450eef1 Mon Sep 17 00:00:00 2001 From: ibuler Date: Wed, 4 Dec 2024 18:34:10 +0800 Subject: [PATCH] perf: update name space --- src/components/Dialog/ProcessingDialog.vue | 6 +- .../DiscoverConfirmFormatter.vue | 3 +- src/router/console/accounts.js | 2 +- src/router/pam/activity.js | 6 +- src/router/pam/automations.js | 2 +- src/router/pam/index.js | 16 +- src/router/pam/integrations.js | 60 ++++++ src/router/pam/security.js | 7 +- src/router/pam/service.js | 61 ------ .../RiskHandlerFormatter/index.vue | 175 ----------------- src/views/pam/Integration/Application.vue | 49 +++++ .../ApplicationCreateUpdate.vue} | 14 +- .../ApplicationDetail/ServiceInfo.vue} | 8 +- .../ApplicationDetail}/index.vue | 14 +- .../ApplicationList.vue} | 8 +- .../SDKList.vue | 2 +- .../components/CallRecords.vue | 0 .../AccountCheckCreateUpdate.vue | 0 .../AccountCheckDetail/AccountPushInfo.vue | 0 .../AccountCheckDetail/index.vue | 0 .../AccountCheckEngine.vue | 0 .../AccountPushExecutionInfo.vue | 0 .../AccountPushExecutionTaskList.vue | 0 .../AccountCheckExecutionDetail/index.vue | 0 .../AccountCheckExecutionList.vue | 0 .../AccountCheckTaskList.vue | 0 .../AccountRiskList.vue | 0 .../AccountRiskSummary.vue | 0 .../RiskHandlerFormatter/ReviewDraw.vue | 74 +++++-- .../RiskDetect/RiskHandlerFormatter/const.js | 49 +++++ .../RiskDetect/RiskHandlerFormatter/index.vue | 180 ++++++++++++++++++ .../RiskSummaryFormatter.vue | 0 .../{AccountCheck => RiskDetect}/index.vue | 12 +- src/views/pam/ServiceIntegration/index.vue | 49 ----- 34 files changed, 447 insertions(+), 350 deletions(-) create mode 100644 src/router/pam/integrations.js delete mode 100644 src/router/pam/service.js delete mode 100644 src/views/pam/AccountCheck/RiskHandlerFormatter/index.vue create mode 100644 src/views/pam/Integration/Application.vue rename src/views/pam/{ServiceIntegration/ServiceIntegrationCreateUpdate.vue => Integration/ApplicationCreateUpdate.vue} (89%) rename src/views/pam/{ServiceIntegration/ServiceIntegrationDetail/ServiceIntegrationInfo.vue => Integration/ApplicationDetail/ServiceInfo.vue} (82%) rename src/views/pam/{ServiceIntegration/ServiceIntegrationDetail => Integration/ApplicationDetail}/index.vue (68%) rename src/views/pam/{ServiceIntegration/ServiceIntegrationList.vue => Integration/ApplicationList.vue} (81%) rename src/views/pam/{ServiceIntegration => Integration}/SDKList.vue (96%) rename src/views/pam/{ServiceIntegration => Integration}/components/CallRecords.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/AccountCheckCreateUpdate.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/AccountCheckDetail/AccountPushInfo.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/AccountCheckDetail/index.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/AccountCheckEngine.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/AccountCheckExecutionDetail/AccountPushExecutionInfo.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/AccountCheckExecutionDetail/AccountPushExecutionTaskList.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/AccountCheckExecutionDetail/index.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/AccountCheckExecutionList.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/AccountCheckTaskList.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/AccountRiskList.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/AccountRiskSummary.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/RiskHandlerFormatter/ReviewDraw.vue (50%) create mode 100644 src/views/pam/RiskDetect/RiskHandlerFormatter/const.js create mode 100644 src/views/pam/RiskDetect/RiskHandlerFormatter/index.vue rename src/views/pam/{AccountCheck => RiskDetect}/RiskSummaryFormatter.vue (100%) rename src/views/pam/{AccountCheck => RiskDetect}/index.vue (75%) delete mode 100644 src/views/pam/ServiceIntegration/index.vue diff --git a/src/components/Dialog/ProcessingDialog.vue b/src/components/Dialog/ProcessingDialog.vue index 673f58b50..02dda62cd 100644 --- a/src/components/Dialog/ProcessingDialog.vue +++ b/src/components/Dialog/ProcessingDialog.vue @@ -1,6 +1,7 @@