[update] 修改年度制修订主动上报流程

This commit is contained in:
lideqin
2023-12-08 17:58:07 +08:00
parent dc99032d70
commit 279985428c
3 changed files with 21 additions and 11 deletions
@@ -54,7 +54,7 @@
<!-- 企标编号-新企标编号 --> <!-- 企标编号-新企标编号 -->
<div class="box-title-text form-flex-item-half"> <div class="box-title-text form-flex-item-half">
<div class="title-text"> <div class="title-text">
<span class="required">*</span> <!--<span class="required">*</span>-->
<span class="title-text-text" :title="$t('workCenter.enterpriseInitChangePlan.enterpriseStandardNum')"> <span class="title-text-text" :title="$t('workCenter.enterpriseInitChangePlan.enterpriseStandardNum')">
{{ $t('workCenter.enterpriseInitChangePlan.enterpriseStandardNum') }} {{ $t('workCenter.enterpriseInitChangePlan.enterpriseStandardNum') }}
</span> </span>
@@ -574,13 +574,13 @@ export default {
} }
], ],
// 企标编号-新企标编号(制定-企标编号,修订新企标编号) // 企标编号-新企标编号(制定-企标编号,修订新企标编号)
newEnStandardNo: [ // newEnStandardNo: [
{ // {
required: true, // required: true,
message: this.$t('workCenter.enterpriseInitChangePlan.enterpriseStandardNum') + this.$t('cannotEmpty'), // message: this.$t('workCenter.enterpriseInitChangePlan.enterpriseStandardNum') + this.$t('cannotEmpty'),
trigger: 'change' // trigger: 'change'
} // }
], // ],
// 企标编号-原企标编号(修订-企标编号) // 企标编号-原企标编号(修订-企标编号)
originEnStandardNo: [ originEnStandardNo: [
{ {
@@ -973,4 +973,8 @@ export default {
.form-flex-item-long { .form-flex-item-long {
width: 100%; width: 100%;
} }
.title-text {
width: 200px;
}
</style> </style>
@@ -56,7 +56,7 @@ export default {
collectUserLeader: [ collectUserLeader: [
{ {
required: true, required: true,
message: this.$t('workCenter.enterpriseInitChangePlan.contactsSupervisorLevelLeaders') + this.$t('cannotEmpty'), message: this.$t('workCenter.revisionPlanActivelyReport.contactsSupervisorLevelLeaders') + this.$t('cannotEmpty'),
trigger: 'change' trigger: 'change'
} }
] ]
@@ -117,7 +117,11 @@ export default {
<style scoped lang="less"> <style scoped lang="less">
@import '~@assets/less/common.less'; @import '~@assets/less/common.less';
.form-flex-item-long {
width: 500px !important;
}
.title-text-middle { .title-text-middle {
width: 130px !important; width: 180px !important;
} }
</style> </style>
@@ -280,7 +280,9 @@ export default {
initData (data) { initData (data) {
console.log('--------initData---------', data) console.log('--------initData---------', data)
// 给表格赋值 // 给表格赋值
this.dataSource = data.dataList if (data && data.dataList) {
this.dataSource = data.dataList
}
}, },
// 外层要获取数据 // 外层要获取数据
getData () { getData () {