[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, ProcessDetailList,
PersonnelInfo PersonnelInfo
}, },
props: {
processKey: {
type: String,
required: false,
detault: ''
}
},
data () { data () {
return { return {
pageTitle: '流程详情', pageTitle: '流程详情',
processKey: '',
loading: false, loading: false,
currentNodeName: '', currentNodeName: '',
personnelInfoData: [] personnelInfoData: []
} }
}, },
mounted () { mounted () {
this.getPersonInfoStructure(this.$route.query.processKey) this.processKey = this.$route.query.processKey
this.getPersonInfoStructure()
}, },
methods: { methods: {
getPersonInfoStructure (key) { getPersonInfoStructure () {
const param = {} const param = {}
// param.processDefinitionKey = key
if (this.$route.query.processDefinitionId) { if (this.$route.query.processDefinitionId) {
param.processDefinitionId = this.$route.query.processDefinitionId param.processDefinitionId = this.$route.query.processDefinitionId
} }