[update] 修改流程详情

This commit is contained in:
lideqin
2023-12-08 18:34:30 +08:00
parent 2828550629
commit e36acc7d2c
@@ -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
}