From 2a8ba6c47c77e0103fd0608c2cbfacac843664e1 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Thu, 23 Nov 2023 16:41:08 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9=E4=BC=81=E6=A0=87?= =?UTF-8?q?=E6=B5=81=E7=A8=8B=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/lang/en-us.js | 2 + src/common/lang/zh-cn.js | 1 + src/mixins/WorkCenterMixin.js | 1 + .../RevisionPlanActivelyReportFlow.vue | 12 +- .../modules/ContactEnterSendTaskForm.vue | 108 ++-- .../modules/ContactEnterStandardForm.vue | 38 +- .../modules/EngineerInitForm.vue | 77 +-- .../RevisionPlanStandardizationInitFlow.vue | 63 +-- .../EnterpriseStandardAnnulFlow.vue | 14 +- .../modules/BaseInfoForm.vue | 233 ++++---- .../EnterpriseStandardChangeFlow.vue | 14 +- .../modules/BaseInfoForm.vue | 513 +++++++++--------- .../PlanApprovalChangeFlow.vue | 125 ++--- .../modules/DutyDepartChangeBaseInfo.vue | 241 ++++---- .../EnterpriseStandardRecheckFlow.vue | 14 +- .../modules/ContactInitBaseInfo.vue | 177 +++--- .../modules/DrafterEnterOptionBaseInfo.vue | 221 ++++---- .../modules/RecheckApproveBaseInfo.vue | 182 +++---- .../modules/StandardizationInitBaseInfo.vue | 87 ++- .../EnterpriseStandardRevisionFlow.vue | 12 +- .../modules/BaseInfoForm.vue | 344 ++++++------ .../EnterpriseStandardSealSaveFlow.vue | 14 +- .../modules/BaseInfoForm.vue | 233 ++++---- .../EnterpriseStandardStartUseFlow.vue | 10 +- .../modules/BaseInfoForm.vue | 233 ++++---- 25 files changed, 1393 insertions(+), 1576 deletions(-) diff --git a/src/common/lang/en-us.js b/src/common/lang/en-us.js index 21a7e7d8..9f6bdcc2 100644 --- a/src/common/lang/en-us.js +++ b/src/common/lang/en-us.js @@ -168,6 +168,8 @@ module.exports = { pleaseSelectTime: '请选择时间', oneTableAdded: '只能添加一个表格', addATable: '请添加一个表格', + select: '选择', + attach: '附件', // 树右键 treeRight: { addFolder: 'Create New Folder', diff --git a/src/common/lang/zh-cn.js b/src/common/lang/zh-cn.js index e99deaac..398630a0 100644 --- a/src/common/lang/zh-cn.js +++ b/src/common/lang/zh-cn.js @@ -172,6 +172,7 @@ module.exports = { oneTableAdded: '只能添加一个表格', addATable: '请添加一个表格', select: '选择', + attach: '附件', // 树右键 treeRight: { addFolder: '新增文件夹', diff --git a/src/mixins/WorkCenterMixin.js b/src/mixins/WorkCenterMixin.js index 5c0193a1..1b99ab9f 100644 --- a/src/mixins/WorkCenterMixin.js +++ b/src/mixins/WorkCenterMixin.js @@ -7,6 +7,7 @@ export const WorkCenterMixin = { return { personnelInfoData: [], // 需要传给PersonnelInfo的数据 switchValue: 'base', + formItemColon: false // a-form不显示冒号 } }, methods: { diff --git a/src/views/workCenter/annualRevisionPlanActivelyReport/RevisionPlanActivelyReportFlow.vue b/src/views/workCenter/annualRevisionPlanActivelyReport/RevisionPlanActivelyReportFlow.vue index 8aa92429..42cc48ba 100644 --- a/src/views/workCenter/annualRevisionPlanActivelyReport/RevisionPlanActivelyReportFlow.vue +++ b/src/views/workCenter/annualRevisionPlanActivelyReport/RevisionPlanActivelyReportFlow.vue @@ -21,7 +21,7 @@ - + - + - + {{ $t('processApprovalInformation') }} - + - + @@ -159,8 +159,6 @@ import { activelyReportReject, activelyReportGetDataById } from '@/api/workCenter' -import Vue from 'vue' -import { USER_INFO } from '@/store/mutation-types' import pick from 'lodash.pick' import { WorkCenterMixin } from '@/mixins/WorkCenterMixin' import { ProcessKey } from '@/enums/commonEnums' diff --git a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskForm.vue b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskForm.vue index dcbe55be..4ce3abf6 100644 --- a/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskForm.vue +++ b/src/views/workCenter/annualRevisionPlanActivelyReport/modules/ContactEnterSendTaskForm.vue @@ -1,67 +1,65 @@