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 () {