From e36acc7d2c91b5a23e61eb5e891080d0e2d858c4 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 8 Dec 2023 18:34:30 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../processCenter/detail/ProcessDetail.vue | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/views/workCenter/processCenter/detail/ProcessDetail.vue b/src/views/workCenter/processCenter/detail/ProcessDetail.vue index 2ee0f0bb..d3a3759d 100644 --- a/src/views/workCenter/processCenter/detail/ProcessDetail.vue +++ b/src/views/workCenter/processCenter/detail/ProcessDetail.vue @@ -19,28 +19,22 @@ export default { ProcessDetailList, PersonnelInfo }, - props: { - processKey: { - type: String, - required: false, - detault: '' - } - }, data () { return { pageTitle: '流程详情', + processKey: '', loading: false, currentNodeName: '', personnelInfoData: [] } }, mounted () { - this.getPersonInfoStructure(this.$route.query.processKey) + this.processKey = this.$route.query.processKey + this.getPersonInfoStructure() }, methods: { - getPersonInfoStructure (key) { + getPersonInfoStructure () { const param = {} - // param.processDefinitionKey = key if (this.$route.query.processDefinitionId) { param.processDefinitionId = this.$route.query.processDefinitionId }