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 }