From 10569bbf550478a19aa5f7e54245d44fd106aacf Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 14 Jun 2024 18:09:50 +0800 Subject: [PATCH] =?UTF-8?q?[add]=20=E5=B8=82=E5=9C=BA=E6=B3=95=E8=A7=84?= =?UTF-8?q?=E6=B8=85=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lang/standardRegulationLibrary/zh-cn.js | 19 +- src/common/lang/zh-cn.js | 33 ++ src/enums/commonEnums.js | 7 + .../MarketRegulationsFormPage.vue | 430 ++++++++++++++++++ .../MarketRegulationsList.vue | 250 ++++++++++ 5 files changed, 738 insertions(+), 1 deletion(-) create mode 100644 src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue create mode 100644 src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsList.vue diff --git a/src/common/lang/standardRegulationLibrary/zh-cn.js b/src/common/lang/standardRegulationLibrary/zh-cn.js index 08247e5..c6dacda 100644 --- a/src/common/lang/standardRegulationLibrary/zh-cn.js +++ b/src/common/lang/standardRegulationLibrary/zh-cn.js @@ -58,11 +58,28 @@ module.exports = { uploadData: '上传资料', addAPeer: '新增同级', newChild: '新增子级', - pleaseSelectTheDirectoryOnTheLeft:'请选择左侧目录' + pleaseSelectTheDirectoryOnTheLeft: '请选择左侧目录' }, // 文档动态 documentDynamics: { messageContent: '消息内容', notificationTime: '通知时间' + }, + // 市场法规清单 + marketRegulationsList: { + listNumber: '清单编号', + listName: '清单名称', + countryRegion: '国家/地区', + drivingPosition: '驾驶位置', + author: '作者', + exportName: '市场法规清单表', + listVersion: '清单版本', + releaseTime: '发布时间', + listState: '清单状态', + customName: '自定义名称', + securityClass: '密级', + listDeclaration: '清单说明', + templateName: '市场法规清单导入模版', + } } diff --git a/src/common/lang/zh-cn.js b/src/common/lang/zh-cn.js index 0d76ffd..c5e18c8 100644 --- a/src/common/lang/zh-cn.js +++ b/src/common/lang/zh-cn.js @@ -189,6 +189,39 @@ module.exports = { noFileAvailableForPreview: '暂无可预览的文件', enterpriseStandard: '企业标准', pleaseAtLeastSelectOneUser: '请至少选择一个用户', + next: '下一步', + marketRegulationsList: '市场法规清单', + transfer: '调取', + // 标准字段 + standardField: { + standardEnglishName: '标准英文名称', + newProductionVehicleImplementationDate: '新生产车实施日期', + newCertifiedVehicleImplementationDate: '新认证车实施日期', + dateOfRegistration: '注册日期', + applicableCountryRegion: '适用国家/地区', + applicableVehicleType: '适用车型' + }, + // 市场清单详情列表字段 + marketListField: { + standardEnglishName: '标准英文名称', + newProductionVehicleImplementationDate: '新生产车实施日期', + newCertifiedVehicleImplementationDate: '新认证车实施日期', + dateOfRegistration: '注册日期', + applicableCountryRegion: '适用国家/地区', + applicableVehicleType: '适用车型', + authenticationObject: '认证对象', + certifiedDeliverables: '认证交付物', + type: '类型', + dynamicType: '动力类型', + mainControlDepartment: '主控部门', + masterControlDepartmentProfessionalModule: '主控部门专业模块', + relatedDepartment: '关联部门', + associateDepartmentSpecializedModules: '关联部门专业模块', + batchRestriction: '批量限制', + automaticDrivingLevel: '自动驾驶等级', + requirementType: '要求类型', + + }, // 树右键 treeRight: { addFolder: '新增文件夹', diff --git a/src/enums/commonEnums.js b/src/enums/commonEnums.js index 777e22d..2e1ca89 100644 --- a/src/enums/commonEnums.js +++ b/src/enums/commonEnums.js @@ -597,3 +597,10 @@ export const EnterpriseNameCode = { JC: { text: 'JC', value: 'JC' }, JHK: { text: 'JHK', value: 'JHK' } } + +// 清单状态 +export const ListState = { + RELEASED: { text: '已发布', value: '1' }, + UNPUBLISH: { text: '未发布', value: '2' }, + UNDER_REVISION: { text: '修改中', value: '3' }, +} diff --git a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue new file mode 100644 index 0000000..a993ee4 --- /dev/null +++ b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue @@ -0,0 +1,430 @@ + + + + + diff --git a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsList.vue b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsList.vue new file mode 100644 index 0000000..ea51f32 --- /dev/null +++ b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsList.vue @@ -0,0 +1,250 @@ + + + + +