From 3be87bb54ed5a94fecdd56e524e7fa5ef1d51b17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Tue, 28 Nov 2023 16:05:33 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E6=B5=81=E7=A8=8B=E5=89=AF=E6=A0=87?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../StandardEntryOrChangeProcess.vue | 3 ++- .../standardProcurementProcess/StandardProcurementProcess.vue | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue b/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue index 77e7eb28..b1e0b663 100644 --- a/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue +++ b/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue @@ -437,7 +437,8 @@ export default { }, computed: { pageTitle () { - return `${this.$t('flowCenter')}${this.$route.meta.title}` + const subTitle = this.$route.query.taskName || FGEntryChangeProcessNode.initiate.text + return `${this.$t('flowCenter')}${this.$route.meta.title}(${subTitle})` }, // 不可编辑的字段 disabledFieldList () { diff --git a/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue b/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue index 7a60ca5c..b447b7e0 100644 --- a/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue +++ b/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue @@ -239,7 +239,8 @@ export default { }, computed: { pageTitle () { - return `${this.$t('flowCenter')}${this.$route.meta.title}` + const subTitle = this.$route.query.taskName || ProcurementProcessNodes.initiate.text + return `${this.$t('flowCenter')}${this.$route.meta.title}(${subTitle})` }, // 流程信息部分禁用 processInfoDisabled () {