bug
This commit is contained in:
@@ -158,8 +158,8 @@ export default {
|
||||
}
|
||||
},
|
||||
created() {
|
||||
if (this.$route.query?.id) {
|
||||
this.getDetail(this.$route.query?.id)
|
||||
if (this.row.id) {
|
||||
this.getDetail(this.row.id)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -184,7 +184,12 @@ export default {
|
||||
},
|
||||
|
||||
changeCharge (e, i) {
|
||||
this.$set(this.form.processNodeList[i], 'candidateList', e)
|
||||
this.$set(this.form.processNodeList[i], 'candidateList', e.map(v => {
|
||||
return {
|
||||
...v,
|
||||
candidate: v.id
|
||||
}
|
||||
}))
|
||||
},
|
||||
/**
|
||||
* 添加流程
|
||||
|
||||
Reference in New Issue
Block a user