Browse Source

完善存放地点变更选择车架号,车辆列表数据被替换的问题

master
yunuo970428 3 years ago
parent
commit
31df973e57
  1. 10
      anrui-scm/anrui-scm-ui/src/views/supplychain/cunfangdidianbiangeng/cunfangdidianbiangengAdd.vue
  2. 10
      anrui-scm/anrui-scm-ui/src/views/workFlow/cunfangdidianbiangengFlow/cunfangdidianbiangengEdit.vue

10
anrui-scm/anrui-scm-ui/src/views/supplychain/cunfangdidianbiangeng/cunfangdidianbiangengAdd.vue

@ -408,7 +408,15 @@ export default {
type: 'error'
})
} else {
this.temp.scmVehicleGressionVehs = this.vinNoChoice
if (this.vinNoChoice.length > 0) {
this.vinNoChoice.forEach((e) => {
this.temp.scmVehicleGressionVehs.push({
vehVin: e.vehVin,
settlementStatus: e.settlementStatus,
settlementStatusValue: e.settlementStatusValue
})
})
}
this.vinNoVisible = false
}
},

10
anrui-scm/anrui-scm-ui/src/views/workFlow/cunfangdidianbiangengFlow/cunfangdidianbiangengEdit.vue

@ -425,7 +425,15 @@ export default {
type: 'error'
})
} else {
this.temp.scmVehicleGressionVehs = this.vinNoChoice
if (this.vinNoChoice.length > 0) {
this.vinNoChoice.forEach((e) => {
this.temp.scmVehicleGressionVehs.push({
vehVin: e.vehVin,
settlementStatus: e.settlementStatus,
settlementStatusValue: e.settlementStatusValue
})
})
}
this.vinNoVisible = false
}
},

Loading…
Cancel
Save