流程bug

This commit is contained in:
宋伟佳
2021-08-06 16:08:13 +08:00
parent 07d950490f
commit 8975e7a827
@@ -429,17 +429,19 @@ export default {
}, },
checkedRole (data) { checkedRole (data) {
if (this.type === 1) { if (this.type === 1) {
this.dataList[this.zrIndex].liablePeopleId = data[0].id const newRow = JSON.parse(JSON.stringify(this.dataList[this.zrIndex]))
this.dataList[this.zrIndex].liablePeople = data[0].name newRow.liablePeopleId = data[0].id
this.$forceUpdate() newRow.liablePeople = data[0].name
this.$set(this.dataList, this.zrIndex, newRow)
} else if(this.type === 2) { } else if(this.type === 2) {
this.dataList.forEach( item => { this.dataList.forEach((item, index) => {
this.selectList.forEach( items => { this.selectList.forEach( items => {
if (item.standId === items.standId) { if (item.standId === items.standId) {
item.liablePeopleId = data[0].id const newRow = JSON.parse(JSON.stringify(item))
item.liablePeople = data[0].name newRow.liablePeopleId = data[0].id
newRow.liablePeople = data[0].name
this.$set(this.dataList, index, newRow)
} }
this.$forceUpdate()
}) })
}) })
} }