diff --git a/src/common/lang/enterpriseStandardLibrary/en.js b/src/common/lang/enterpriseStandardLibrary/en.js index 20d3e9c6..33d5518a 100644 --- a/src/common/lang/enterpriseStandardLibrary/en.js +++ b/src/common/lang/enterpriseStandardLibrary/en.js @@ -159,7 +159,7 @@ module.exports = { projectType: '项目类型', rangeOfApplication: '适用范围', enterpriseStandardSystem: '企标体系', - partName: '零部件名称', + partName: '零部件分类', scopeOfApplication: '标准适用范围', compilationIllustration: '编制说明', projectBackground: '立项背景、立项依据', diff --git a/src/common/lang/enterpriseStandardLibrary/zh.js b/src/common/lang/enterpriseStandardLibrary/zh.js index 94a6a181..3f09c755 100644 --- a/src/common/lang/enterpriseStandardLibrary/zh.js +++ b/src/common/lang/enterpriseStandardLibrary/zh.js @@ -162,7 +162,7 @@ module.exports = { projectType: '项目类型', rangeOfApplication: '适用范围', enterpriseStandardSystem: '企标体系', - partName: '零部件名称', + partName: '零部件分类', scopeOfApplication: '标准适用范围', compilationIllustration: '编制说明', projectBackground: '立项背景、立项依据', diff --git a/src/common/lang/workCenter/en.js b/src/common/lang/workCenter/en.js index c246b8f4..7502730a 100644 --- a/src/common/lang/workCenter/en.js +++ b/src/common/lang/workCenter/en.js @@ -53,7 +53,7 @@ module.exports = { draftPlanFinishDate: '草稿计划完成日期', exposureDraftPlanFinishDate: '征求意见稿计划完成日期', planSubmissionDate: '计划报批日期', - partName: '零部件名称', + partName: '零部件分类', authorizationDepart: '授权部门', principalDrafter: '主起草人', mainDraftUnit: '主起草单位', diff --git a/src/common/lang/workCenter/zh.js b/src/common/lang/workCenter/zh.js index 33e36cd5..89007dab 100644 --- a/src/common/lang/workCenter/zh.js +++ b/src/common/lang/workCenter/zh.js @@ -54,7 +54,7 @@ module.exports = { draftPlanFinishDate: '草稿计划完成日期', exposureDraftPlanFinishDate: '征求意见稿计划完成日期', planSubmissionDate: '计划报批日期', - partName: '零部件名称', + partName: '零部件分类', authorizationDepart: '授权部门', principalDrafter: '主起草人', mainDraftUnit: '主起草单位', diff --git a/src/components/customField/AddForm.vue b/src/components/customField/AddForm.vue index 8c83844d..b078874f 100644 --- a/src/components/customField/AddForm.vue +++ b/src/components/customField/AddForm.vue @@ -328,7 +328,7 @@ export default { } }, watch: { - // 国内的零部件名称、适用认证、适用车型和标准性质关联,准入标准必填,非准入标准不必填 + // 国内的零部件分类、适用认证、适用车型和标准性质关联,准入标准必填,非准入标准不必填 'formInline.standard_property' () { this.handleDomesticSpecialCheck() }, diff --git a/src/views/enterpriseStandardLibrary/plan/detail/PlanDetail.vue b/src/views/enterpriseStandardLibrary/plan/detail/PlanDetail.vue index 94228e43..a839ae1e 100644 --- a/src/views/enterpriseStandardLibrary/plan/detail/PlanDetail.vue +++ b/src/views/enterpriseStandardLibrary/plan/detail/PlanDetail.vue @@ -98,7 +98,7 @@ {{ form.enStandardSystem_dictText || global.emptyLine }} - +
{{ form.componentName_dictText || global.emptyLine }} diff --git a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskModal.vue b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskModal.vue index 0e61b5c8..7f3ed498 100644 --- a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskModal.vue +++ b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskModal.vue @@ -398,7 +398,7 @@
{{ $t('rangeOfApplication') }}
- +
@@ -971,7 +971,7 @@ export default { return item }) }, - // 零部件名称选择完成的回调 + // 零部件分类选择完成的回调 treeSelectNameChange (value, fieldName) { this.formInline[fieldName + '_dictText'] = value }, diff --git a/src/views/workCenter/annualRevisionPlanStandardizationInit/modules/BaseInfoTableModal.vue b/src/views/workCenter/annualRevisionPlanStandardizationInit/modules/BaseInfoTableModal.vue index 099401f2..62c77b20 100644 --- a/src/views/workCenter/annualRevisionPlanStandardizationInit/modules/BaseInfoTableModal.vue +++ b/src/views/workCenter/annualRevisionPlanStandardizationInit/modules/BaseInfoTableModal.vue @@ -376,7 +376,7 @@
{{ $t('rangeOfApplication') }}
- +
@@ -1008,7 +1008,7 @@ export default { // } // } // }, - // 零部件名称选择完成的回调 + // 零部件分类选择完成的回调 treeSelectNameChange (value, fieldName) { this.formInline[fieldName + '_dictText'] = value }, diff --git a/src/views/workCenter/enterpriseStandardChange/modules/BaseInfoForm.vue b/src/views/workCenter/enterpriseStandardChange/modules/BaseInfoForm.vue index 0ca21da7..f0258d7e 100644 --- a/src/views/workCenter/enterpriseStandardChange/modules/BaseInfoForm.vue +++ b/src/views/workCenter/enterpriseStandardChange/modules/BaseInfoForm.vue @@ -192,7 +192,7 @@ dictCode="trial_period" />
- +
* @@ -557,7 +557,7 @@ export default { trigger: 'change' } ], - // 零部件名称 + // 零部件分类 partName: [ { required: true, @@ -615,7 +615,7 @@ export default { formInline.tryFlag = result.try_flag // 试行周期 formInline.trialPeriod = result.trial_period || undefined - // 零部件名称 + // 零部件分类 formInline.partName = result.part_name formInline.partName_dictText = result.part_name_dictText // 主起草人 @@ -732,7 +732,7 @@ export default { formInline.tryFlag = result.try_flag // 试行周期 formInline.trialPeriod = result.trial_period || undefined - // 零部件名称 + // 零部件分类 formInline.partName = result.part_name formInline.partName_dictText = result.part_name_dictText // 主起草人 @@ -760,7 +760,7 @@ export default { }, 500) }) }, - // 零部件名称选择完成的回调 + // 零部件分类选择完成的回调 treeSelectNameChange (value, fieldName) { this.formInline[fieldName + '_dictText'] = value }, diff --git a/src/views/workCenter/enterpriseStandardInitChange/modules/ApprovalBaseInfo.vue b/src/views/workCenter/enterpriseStandardInitChange/modules/ApprovalBaseInfo.vue index 3d09d63b..170b31a1 100644 --- a/src/views/workCenter/enterpriseStandardInitChange/modules/ApprovalBaseInfo.vue +++ b/src/views/workCenter/enterpriseStandardInitChange/modules/ApprovalBaseInfo.vue @@ -348,7 +348,7 @@
- +
@@ -1095,7 +1095,7 @@ export default { this.formInline.enStandardClassification = result.grade_classification || undefined // 编制说明 this.formInline.compilationDescription = result.comp_illustration - // 零部件名称 + // 零部件分类 this.formInline.componentName = result.part_name this.formInline.componentName_dictText = result.part_name_dictText // 授权部门 @@ -1119,7 +1119,7 @@ export default { this.loading = false }) }, - // 零部件名称选择完成的回调 + // 零部件分类选择完成的回调 treeSelectNameChange (value, fieldName) { this.formInline[fieldName + '_dictText'] = value }, diff --git a/src/views/workCenter/enterpriseStandardInitChange/modules/MergeBaseInfo.vue b/src/views/workCenter/enterpriseStandardInitChange/modules/MergeBaseInfo.vue index 40e2d044..9faa4d7b 100644 --- a/src/views/workCenter/enterpriseStandardInitChange/modules/MergeBaseInfo.vue +++ b/src/views/workCenter/enterpriseStandardInitChange/modules/MergeBaseInfo.vue @@ -347,7 +347,7 @@
- +
* @@ -494,7 +494,7 @@ export default { return { ProjectType, standardSystemOptions: [], // 标准体系下拉数据 - partNameOptions: [], // 零部件名称下拉框数据 + partNameOptions: [], // 零部件分类下拉框数据 formInline: {}, // 各模块的收齐和展开状态 retractableFlag: { @@ -598,7 +598,7 @@ export default { trigger: 'change' } ], - // 零部件名称 + // 零部件分类 componentName: [ { required: true, @@ -644,7 +644,7 @@ export default { mounted () { // 获取标准体系下拉框数据 this.initStandardSystemOptions() - // 获取零部件名称下拉框数据 + // 获取零部件分类下拉框数据 this.initPartNameOptions() }, methods: { @@ -662,7 +662,7 @@ export default { } }) }, - // 获取零部件名称下拉框数据 + // 获取零部件分类下拉框数据 initPartNameOptions () { getFormDictTreeList({ dictId: '1696821512600637441' }).then(res => { if (res.success) { @@ -670,7 +670,7 @@ export default { } }) }, - // 零部件名称选择完成的回调 + // 零部件分类选择完成的回调 treeSelectNameChange (value, fieldName) { this.formInline[fieldName + '_dictText'] = value }, @@ -743,7 +743,7 @@ export default { formInline.solicitationDraftPlanCompleteDate = value[0].solicitationDraftPlanCompleteDate || undefined // 计划报批日期 formInline.planApprovalDate = value[0].planApprovalDate || undefined - // 零部件名称 + // 零部件分类 formInline.componentName = value[0].componentName || undefined formInline.componentName_dictText = value[0].componentName_dictText || '' // 主起草人 diff --git a/src/views/workCenter/enterpriseStandardRevision/modules/BaseInfoForm.vue b/src/views/workCenter/enterpriseStandardRevision/modules/BaseInfoForm.vue index ad593685..c627f1d4 100644 --- a/src/views/workCenter/enterpriseStandardRevision/modules/BaseInfoForm.vue +++ b/src/views/workCenter/enterpriseStandardRevision/modules/BaseInfoForm.vue @@ -41,7 +41,7 @@ @@ -521,7 +521,7 @@ export default { let dataList = res.result.基础信息 // 1、去掉三个代号一个年代号 dataList = dataList.filter(item => !['standard_code', 'name_code', 'category_code', 'year_number', 'standard_state'].includes(item.dbFieldName)) - // 2、加零部件名称和代替标准号 + // 2、加零部件分类和代替标准号 const partName = res.result.适用范围.find(item => item.dbFieldName === 'part_name') const substituteStandardNumber = res.result.关联信息.find(item => item.dbFieldName === 'substitute_standard_number') if (partName) { diff --git a/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue b/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue index 8ff6dfa1..1ee97b55 100644 --- a/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue +++ b/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue @@ -501,7 +501,7 @@ export default { } }, watch: { - // 国内的零部件名称、适用认证、适用车型和标准性质关联,准入标准必填,非准入标准不必填 + // 国内的零部件分类、适用认证、适用车型和标准性质关联,准入标准必填,非准入标准不必填 'formInline.standard_property' () { this.handleDomesticSpecialCheck() },