diff --git a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskModal.vue b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskModal.vue index 0ec88af2..adc9b209 100644 --- a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskModal.vue +++ b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskModal.vue @@ -54,7 +54,7 @@
- * + {{ $t('workCenter.enterpriseInitChangePlan.enterpriseStandardNum') }} @@ -574,13 +574,13 @@ export default { } ], // 企标编号-新企标编号(制定-企标编号,修订新企标编号) - newEnStandardNo: [ - { - required: true, - message: this.$t('workCenter.enterpriseInitChangePlan.enterpriseStandardNum') + this.$t('cannotEmpty'), - trigger: 'change' - } - ], + // newEnStandardNo: [ + // { + // required: true, + // message: this.$t('workCenter.enterpriseInitChangePlan.enterpriseStandardNum') + this.$t('cannotEmpty'), + // trigger: 'change' + // } + // ], // 企标编号-原企标编号(修订-企标编号) originEnStandardNo: [ { @@ -973,4 +973,8 @@ export default { .form-flex-item-long { width: 100%; } + +.title-text { + width: 200px; +} diff --git a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterStandardForm.vue b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterStandardForm.vue index 2445613c..4b2d51a7 100644 --- a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterStandardForm.vue +++ b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterStandardForm.vue @@ -56,7 +56,7 @@ export default { collectUserLeader: [ { required: true, - message: this.$t('workCenter.enterpriseInitChangePlan.contactsSupervisorLevelLeaders') + this.$t('cannotEmpty'), + message: this.$t('workCenter.revisionPlanActivelyReport.contactsSupervisorLevelLeaders') + this.$t('cannotEmpty'), trigger: 'change' } ] @@ -117,7 +117,11 @@ export default { diff --git a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/OnlyTableForm.vue b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/OnlyTableForm.vue index 10c533a7..9d8122e6 100644 --- a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/OnlyTableForm.vue +++ b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/OnlyTableForm.vue @@ -280,7 +280,9 @@ export default { initData (data) { console.log('--------initData---------', data) // 给表格赋值 - this.dataSource = data.dataList + if (data && data.dataList) { + this.dataSource = data.dataList + } }, // 外层要获取数据 getData () {