报工调整问题修改

dev-scheduling
zhangdi 1 month ago
parent 46377e1fcc
commit ce03e5bb4c
  1. 7
      src/views/oem/outsourcingAssignmentControl/index.vue

@ -465,9 +465,10 @@ export default {
// 3. data
this.data = records;
this.data.forEach(item=>{
item.oemId = item.oemId+''
item.platingId = item.platingId+''
item.dsPart = item.dsPart+''
item.oemId = item.oemId==null?'':item.oemId+''
item.platingId = item.platingId==null?'':item.platingId+''
item.dsPart = item.dsPart==null?'':item.dsPart+''
})
this.page.total = res.data.data.total;
} catch (error) {

Loading…
Cancel
Save