From bc206c480bf5c1f3727c8bfc546a9d9a325135bd Mon Sep 17 00:00:00 2001 From: danshihao Date: Fri, 28 Jun 2024 16:20:54 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E6=8B=86=E5=88=86=E3=80=81=E9=A6=96?= =?UTF-8?q?=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/less/common.less | 2 +- src/common/lang/dashboard/en.js | 2 +- src/common/lang/dashboard/zh.js | 2 +- .../lang/standardRegulationLibrary/en-us.js | 5 + .../lang/standardRegulationLibrary/zh-cn.js | 5 + src/components/StandardResolutionSheet.vue | 106 +++++++++++++++++- .../dashboard/modules/FriendLinkCard.vue | 22 ++-- src/views/dashboard/modules/ToDoTaskCard.vue | 11 +- src/views/dashboard/search/AdvancedSearch.vue | 2 +- .../documentSplit/DocumentSplitDetail.vue | 14 ++- .../documentSplit/StandardSplitSheet.vue | 2 +- 11 files changed, 146 insertions(+), 27 deletions(-) diff --git a/src/assets/less/common.less b/src/assets/less/common.less index aa4c669..099382e 100644 --- a/src/assets/less/common.less +++ b/src/assets/less/common.less @@ -539,7 +539,7 @@ } .ant-tree li .ant-tree-node-content-wrapper.ant-tree-node-selected { - background-color: #ffd9d1 !important; + //background-color: #ffd9d1 !important; } .tree-operate-node { diff --git a/src/common/lang/dashboard/en.js b/src/common/lang/dashboard/en.js index 6703a11..a7df49e 100644 --- a/src/common/lang/dashboard/en.js +++ b/src/common/lang/dashboard/en.js @@ -54,7 +54,7 @@ module.exports = { newProduceVehiclesImplementationDate: 'Implementation date of new production vehicles', newAuthVehiclesImplementationDate: 'Implementation date of new certified vehicle', registrationDate: 'Registration date', - keywords: 'keywords', + keywords: 'Involving systems/components', responsibleDepartment: 'Responsible department', responsibleDepartmentModule: 'Responsible department professional module', relatedDepartments: 'Related departments', diff --git a/src/common/lang/dashboard/zh.js b/src/common/lang/dashboard/zh.js index 8ad7069..ae5e89e 100644 --- a/src/common/lang/dashboard/zh.js +++ b/src/common/lang/dashboard/zh.js @@ -54,7 +54,7 @@ module.exports = { newProduceVehiclesImplementationDate: '新生产车实施日期', newAuthVehiclesImplementationDate: '新认证车实施日期', registrationDate: '注册日期', - keywords: '关键字', + keywords: '涉及系统/部件', responsibleDepartment: '责任部门', responsibleDepartmentModule: '责任部门专业模块', relatedDepartments: '关联部门', diff --git a/src/common/lang/standardRegulationLibrary/en-us.js b/src/common/lang/standardRegulationLibrary/en-us.js index 6086be9..f250cb9 100644 --- a/src/common/lang/standardRegulationLibrary/en-us.js +++ b/src/common/lang/standardRegulationLibrary/en-us.js @@ -23,6 +23,11 @@ module.exports = { applicableVehicleType: 'Applicable vehicle type', // 适用车型 dynamicType: 'Dynamic type', // 动力类型 inputExample: 'Input example:', // 输入示例 + applicableComponents: 'Applicable components', + involvingSystemsComponents: 'Involving systems/components', + applications: 'Applicable vehicle models', + powerType: 'Power type', + responsibleDepartment: 'Responsible department', // 外来标准法规文本库 foreignStandard: { treeSearchPlaceholder: 'Please enter the tree system', // 请输入树状图体系 diff --git a/src/common/lang/standardRegulationLibrary/zh-cn.js b/src/common/lang/standardRegulationLibrary/zh-cn.js index 9f82d64..d276322 100644 --- a/src/common/lang/standardRegulationLibrary/zh-cn.js +++ b/src/common/lang/standardRegulationLibrary/zh-cn.js @@ -24,6 +24,11 @@ module.exports = { applicableVehicleType: '适用车型', // 适用车型 dynamicType: '动力类型', // 动力类型 inputExample: '输入示例:', + applicableComponents: '适用零部件', + involvingSystemsComponents: '涉及系统/部件', + applications: '适用车型', + powerType: '动力类型', + responsibleDepartment: '责任部门', // 外来标准法规文本库 foreignStandard: { treeSearchPlaceholder: '请输入树状图体系', diff --git a/src/components/StandardResolutionSheet.vue b/src/components/StandardResolutionSheet.vue index c5d231b..1f8be9a 100644 --- a/src/components/StandardResolutionSheet.vue +++ b/src/components/StandardResolutionSheet.vue @@ -1,5 +1,74 @@