diff --git a/src/common/lang/workCenter/en.js b/src/common/lang/workCenter/en.js index 56a8566..ce184c8 100644 --- a/src/common/lang/workCenter/en.js +++ b/src/common/lang/workCenter/en.js @@ -18,6 +18,8 @@ module.exports = { stageWeAreIn: 'Regulation Status', materialDate: 'Implementation Date', applicableMarket: 'Applicable Market', + competentDepartment: 'Competent department', + mainControlDepartment: 'Main control department', ccPerson: 'CC Person', briefDescription: 'The statute requires a brief description' }, diff --git a/src/common/lang/workCenter/zh.js b/src/common/lang/workCenter/zh.js index 0d56097..5a02826 100644 --- a/src/common/lang/workCenter/zh.js +++ b/src/common/lang/workCenter/zh.js @@ -18,6 +18,8 @@ module.exports = { stageWeAreIn: '所处阶段', materialDate: '实施日期', applicableMarket: '适用市场', + competentDepartment: '主管部门', + mainControlDepartment: '主控部门', ccPerson: '抄送人员', briefDescription: '法规要求简要描述' }, diff --git a/src/views/workCenter/newRegulationIntroductionProcess/modules/BaseInfoForm.vue b/src/views/workCenter/newRegulationIntroductionProcess/modules/BaseInfoForm.vue index c3dd1eb..95531f0 100644 --- a/src/views/workCenter/newRegulationIntroductionProcess/modules/BaseInfoForm.vue +++ b/src/views/workCenter/newRegulationIntroductionProcess/modules/BaseInfoForm.vue @@ -128,6 +128,36 @@ :placeholder="disabled ? '' : $t('pleaseSelect')+$t('workCenter.newRegulationImportProcess.applicableMarket')" /> + +
+
+ * + + {{ $t('workCenter.newRegulationImportProcess.competentDepartment') }} + +
+ + + +
+ +
+
+ * + + {{ $t('workCenter.newRegulationImportProcess.mainControlDepartment') }} + +
+ + + +
@@ -147,7 +177,7 @@
-
+
{{ $t('workCenter.newRegulationImportProcess.briefDescription') }} @@ -227,6 +257,22 @@ export default { trigger: 'change' } ], + // 主管部门 + competentDepartment: [ + { + required: true, + message: this.$t('workCenter.newRegulationImportProcess.competentDepartment') + this.$t('cannotEmpty'), + trigger: 'change' + } + ], + // 主控部门 + mainControlDepartment: [ + { + required: true, + message: this.$t('workCenter.newRegulationImportProcess.mainControlDepartment') + this.$t('cannotEmpty'), + trigger: 'change' + } + ], // 抄送人员 copyUser: [ { @@ -329,4 +375,8 @@ export default { /deep/ .ant-form-item-children > * { width: 100%; } + +.form-flex-item-full { + width: 100%; +}