流程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) {
if (this.type === 1) {
this.dataList[this.zrIndex].liablePeopleId = data[0].id
this.dataList[this.zrIndex].liablePeople = data[0].name
this.$forceUpdate()
const newRow = JSON.parse(JSON.stringify(this.dataList[this.zrIndex]))
newRow.liablePeopleId = data[0].id
newRow.liablePeople = data[0].name
this.$set(this.dataList, this.zrIndex, newRow)
} else if(this.type === 2) {
this.dataList.forEach( item => {
this.dataList.forEach((item, index) => {
this.selectList.forEach( items => {
if (item.standId === items.standId) {
item.liablePeopleId = data[0].id
item.liablePeople = data[0].name
const newRow = JSON.parse(JSON.stringify(item))
newRow.liablePeopleId = data[0].id
newRow.liablePeople = data[0].name
this.$set(this.dataList, index, newRow)
}
this.$forceUpdate()
})
})
}