[update] 修改流程详情
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user