From 2bbee050aaec71f79129c3f885b460620ace1fb4 Mon Sep 17 00:00:00 2001 From: RubyLiu Date: Wed, 10 Jan 2024 21:33:27 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=A1=B9=E7=9B=AE=E7=AE=A1=E7=90=86):=20?= =?UTF-8?q?=E7=8E=AF=E5=A2=83=E7=AE=A1=E7=90=86=E5=85=A8=E5=B1=80=E5=8F=98?= =?UTF-8?q?=E9=87=8F=E9=9D=99=E6=80=81=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pure/ms-table-more-action/index.vue | 14 +- .../pure/ms-table/columnSelector.vue | 8 +- frontend/src/components/pure/ms-table/type.ts | 2 + frontend/src/config/pathMap.ts | 7 + frontend/src/enums/envEnum.ts | 10 + frontend/src/enums/routeEnum.ts | 3 +- frontend/src/enums/tableEnum.ts | 1 + frontend/src/hooks/useTableStore.ts | 4 +- frontend/src/locale/en-US/common.ts | 7 + frontend/src/locale/en-US/index.ts | 1 + frontend/src/locale/zh-CN/common.ts | 7 + frontend/src/locale/zh-CN/index.ts | 1 + .../models/projectManagement/environmental.ts | 4 + .../routes/modules/projectManagement.ts | 11 + .../modules/components/ms-table/types.ts | 2 +- .../modules/setting/useProjectEnvStore.ts | 14 + .../views/api-test/components/paramTable.vue | 3 + .../src/views/login/components/login-form.vue | 4 +- .../environmental/components/AllParamBox.vue | 41 ++ .../environmental/components/EnvParamBox.vue | 13 + .../environmental/components/RenamePop.vue | 172 +++++++ .../components/RequestHeader.vue | 73 +++ .../components/allParams/AllParamsTable.vue | 443 ++++++++++++++++++ .../components/allParams/ParamDescInput.vue | 77 +++ .../components/allParams/ParamTagInput.vue | 74 +++ .../components/allParams/index.vue | 75 +++ .../environmental/index.vue | 299 ++++++++++++ .../environmental/locale/en-US.ts | 3 + .../environmental/locale/zh-CN.ts | 19 + .../organization/usergroup/orgUserGroup.vue | 2 +- .../components/systemOrganization.vue | 2 +- .../components/systemProject.vue | 2 +- .../system/usergroup/systemUserGroup.vue | 2 +- 33 files changed, 1386 insertions(+), 14 deletions(-) create mode 100644 frontend/src/enums/envEnum.ts create mode 100644 frontend/src/models/projectManagement/environmental.ts create mode 100644 frontend/src/store/modules/setting/useProjectEnvStore.ts create mode 100644 frontend/src/views/project-management/environmental/components/AllParamBox.vue create mode 100644 frontend/src/views/project-management/environmental/components/EnvParamBox.vue create mode 100644 frontend/src/views/project-management/environmental/components/RenamePop.vue create mode 100644 frontend/src/views/project-management/environmental/components/RequestHeader.vue create mode 100644 frontend/src/views/project-management/environmental/components/allParams/AllParamsTable.vue create mode 100644 frontend/src/views/project-management/environmental/components/allParams/ParamDescInput.vue create mode 100644 frontend/src/views/project-management/environmental/components/allParams/ParamTagInput.vue create mode 100644 frontend/src/views/project-management/environmental/components/allParams/index.vue create mode 100644 frontend/src/views/project-management/environmental/index.vue create mode 100644 frontend/src/views/project-management/environmental/locale/en-US.ts create mode 100644 frontend/src/views/project-management/environmental/locale/zh-CN.ts diff --git a/frontend/src/components/pure/ms-table-more-action/index.vue b/frontend/src/components/pure/ms-table-more-action/index.vue index 0165f07348..1a892e91c8 100644 --- a/frontend/src/components/pure/ms-table-more-action/index.vue +++ b/frontend/src/components/pure/ms-table-more-action/index.vue @@ -1,7 +1,9 @@