diff --git a/src/views/workCenter/enterpriseStandardRevision/EnterpriseStandardRevisionFlow.vue b/src/views/workCenter/enterpriseStandardRevision/EnterpriseStandardRevisionFlow.vue index 4d7e5394..a391a94e 100644 --- a/src/views/workCenter/enterpriseStandardRevision/EnterpriseStandardRevisionFlow.vue +++ b/src/views/workCenter/enterpriseStandardRevision/EnterpriseStandardRevisionFlow.vue @@ -309,10 +309,10 @@ export default { this.currentNodeName = '主起草人起草分发' } // 需要能判断是自动发起还是手动发起?? - // if (this.currentNode === 1 && this.$route.query.taskId) { - // // 有任务id说明是从待办进来的至少是自动发起 - // this.flowInitType = 'auto' - // } + if (this.currentNode === 1 && this.$route.query.processInstanceId) { + // 有流程id说明是从待办进来的,是自动发起 + this.flowInitType = 'auto' + } }, data () { return { diff --git a/src/views/workCenter/enterpriseStandardRevision/modules/DepartLiaisonCollectBaseInfo.vue b/src/views/workCenter/enterpriseStandardRevision/modules/DepartLiaisonCollectBaseInfo.vue index 391cae2b..99af5e2f 100644 --- a/src/views/workCenter/enterpriseStandardRevision/modules/DepartLiaisonCollectBaseInfo.vue +++ b/src/views/workCenter/enterpriseStandardRevision/modules/DepartLiaisonCollectBaseInfo.vue @@ -42,8 +42,8 @@
-
-
+
+
* {{ $t('workCenter.enStandardRevision.departLiaisonLeader') }} @@ -226,4 +226,10 @@ export default { height: 100%; } } +.form-flex-item-half { + width: 50%; +} +.title-text-long { + width: 180px !important; +} diff --git a/src/views/workCenter/enterpriseStandardRevision/modules/MainDrafterUploadMinuteBaseInfo.vue b/src/views/workCenter/enterpriseStandardRevision/modules/MainDrafterUploadMinuteBaseInfo.vue index cdbc6a46..c1bdabdf 100644 --- a/src/views/workCenter/enterpriseStandardRevision/modules/MainDrafterUploadMinuteBaseInfo.vue +++ b/src/views/workCenter/enterpriseStandardRevision/modules/MainDrafterUploadMinuteBaseInfo.vue @@ -33,6 +33,7 @@
diff --git a/src/views/workCenter/enterpriseStandardRevision/modules/OtherDrafterUploadStandardBaseInfo.vue b/src/views/workCenter/enterpriseStandardRevision/modules/OtherDrafterUploadStandardBaseInfo.vue index 1f07d9ff..8f25a01d 100644 --- a/src/views/workCenter/enterpriseStandardRevision/modules/OtherDrafterUploadStandardBaseInfo.vue +++ b/src/views/workCenter/enterpriseStandardRevision/modules/OtherDrafterUploadStandardBaseInfo.vue @@ -62,28 +62,28 @@ export default { { // 起草单位 title: this.$t('workCenter.enStandardRevision.draftingUnit'), align: 'center', - width: 180, + width: 200, dataIndex: 'dept_dictText', scopedSlots: { customRender: 'text' } }, { // 起草人 title: this.$t('workCenter.enStandardRevision.drafter'), align: 'center', - width: 180, + width: 200, dataIndex: 'user_dictText', scopedSlots: { customRender: 'user' } }, { // 起草范围 title: this.$t('workCenter.enStandardRevision.draftingScope'), align: 'center', - width: 180, + width: 200, dataIndex: 'scope', scopedSlots: { customRender: 'text' } }, { // 截止日期 title: this.$t('expirationDate'), align: 'center', - width: 180, + width: 200, dataIndex: 'deadline', scopedSlots: { customRender: 'text' } }, @@ -91,7 +91,7 @@ export default { title: this.$t('operation'), scopedSlots: { customRender: 'action' }, align: 'center', - fixed: 'right', + // fixed: 'right', width: 200 } ],