@@ -193,23 +193,23 @@
:placeholder="$t('pleaseEnter')+$t('workCenter.enterpriseInitChangePlan.enterpriseStandardName')" />
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ *
+
+ {{ $t('workCenter.enterpriseInitChangePlan.newEnterpriseStandardNum') }}
+
+
+
+ event.target.value = event.target.value.trim()"
+ :placeholder="$t('pleaseEnter')+$t('workCenter.enterpriseInitChangePlan.newEnterpriseStandardNum')" />
+
+
@@ -549,6 +549,14 @@ import TreeSelection from '@/components/selection/TreeSelection'
export default {
name: 'ContactEnterSendTaskModal',
components: { UserSelection, StandardSelection, UploadFile, TreeSelection },
+ props: {
+ // 是否可以编辑新企标编号
+ canEditNewStandardNumber: {
+ type: Boolean,
+ required: false,
+ default: false
+ }
+ },
data () {
return {
StandardSource,
@@ -580,13 +588,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: [
{
diff --git a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/OnlyTableForm.vue b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/OnlyTableForm.vue
index 5e47fc31..4b3053d2 100644
--- a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/OnlyTableForm.vue
+++ b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/OnlyTableForm.vue
@@ -70,7 +70,9 @@
-
+
+
@@ -116,6 +118,12 @@ export default {
type: Boolean,
required: false,
default: false
+ },
+ // 是否可以编辑新企标编号
+ canEditNewStandardNumber: {
+ type: Boolean,
+ required: false,
+ default: false
}
},
computed: {
diff --git a/src/views/workCenter/annualRevisionPlanStandardizationInit/RevisionPlanStandardizationInitFlow.vue b/src/views/workCenter/annualRevisionPlanStandardizationInit/RevisionPlanStandardizationInitFlow.vue
index 93cfa367..8f853342 100644
--- a/src/views/workCenter/annualRevisionPlanStandardizationInit/RevisionPlanStandardizationInitFlow.vue
+++ b/src/views/workCenter/annualRevisionPlanStandardizationInit/RevisionPlanStandardizationInitFlow.vue
@@ -63,7 +63,7 @@
-
+
{{ $t('processApprovalInformation') }}
@@ -206,7 +206,7 @@ export default {
// 标准化归档
this.currentNode = 9
} else if (nodeId === EsRevisionPlanStandardizationInitNodes.standardizationTwoUpdate.value) {
- // 标准化归档
+ // 标准化工程师二次修改调整
this.currentNode = 10
} else {
// 预留加签节点
diff --git a/src/views/workCenter/annualRevisionPlanStandardizationInit/modules/BaseInfoTableModal.vue b/src/views/workCenter/annualRevisionPlanStandardizationInit/modules/BaseInfoTableModal.vue
index 858baeaf..194afb73 100644
--- a/src/views/workCenter/annualRevisionPlanStandardizationInit/modules/BaseInfoTableModal.vue
+++ b/src/views/workCenter/annualRevisionPlanStandardizationInit/modules/BaseInfoTableModal.vue
@@ -51,23 +51,23 @@