Browse Source

客户退货申请页面展示数据

master
chenfang 9 months ago
parent
commit
93ab5dc863
  1. 6
      src/views/wms/deliversettlementManage/customerreturn/customerreturnRequestMain/index.vue

6
src/views/wms/deliversettlementManage/customerreturn/customerreturnRequestMain/index.vue

@ -127,6 +127,12 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
// getBomDisassemble
DeliverRecordDetailApi.getDeliverRecordDetailPage({masterId:val[0]['id']})
.then(res => {
res.list.forEach(obj => {
let value = null
value = obj.fromLocationCode
obj.fromLocationCode = obj.toLocationCode
obj.toLocationCode = value
})
console.log(555,res)
if (res) tableData.value = res.list
}).catch(err => {

Loading…
Cancel
Save