diff --git a/src/views/emis/emisWaybill/centerWaybillList.vue b/src/views/emis/emisWaybill/centerWaybillList.vue index 0bbffa5a..3280c7c4 100644 --- a/src/views/emis/emisWaybill/centerWaybillList.vue +++ b/src/views/emis/emisWaybill/centerWaybillList.vue @@ -1032,8 +1032,8 @@ export default { this.emisWaybillList.forEach(item=>{ queryLastRecord(item.billCode).then(response => { let data=response.data; - item.lastTraceInfo=data.lastTraceInfo; - item.lastScanDate=data.scanDate; + this.$set(item, 'lastTraceInfo', data.lastTraceInfo); + this.$set(item, 'lastScanDate', data.scanDate); }); }); } diff --git a/src/views/emis/emisWaybill/dispatchWaybillList.vue b/src/views/emis/emisWaybill/dispatchWaybillList.vue index ff9d34d3..945fd292 100644 --- a/src/views/emis/emisWaybill/dispatchWaybillList.vue +++ b/src/views/emis/emisWaybill/dispatchWaybillList.vue @@ -998,8 +998,8 @@ export default { this.emisWaybillList.forEach(item=>{ queryLastRecord(item.billCode).then(response => { let data=response.data; - item.lastTraceInfo=data.lastTraceInfo; - item.lastScanDate=data.scanDate; + this.$set(item, 'lastTraceInfo', data.lastTraceInfo); + this.$set(item, 'lastScanDate', data.scanDate); }); }); } diff --git a/src/views/emis/emisWaybill/sendWaybillList.vue b/src/views/emis/emisWaybill/sendWaybillList.vue index 4f166325..da414acd 100644 --- a/src/views/emis/emisWaybill/sendWaybillList.vue +++ b/src/views/emis/emisWaybill/sendWaybillList.vue @@ -1074,8 +1074,8 @@ export default { this.emisWaybillList.forEach(item=>{ queryLastRecord(item.billCode).then(response => { let data=response.data; - item.lastTraceInfo=data.lastTraceInfo; - item.lastScanDate=data.scanDate; + this.$set(item, 'lastTraceInfo', data.lastTraceInfo); + this.$set(item, 'lastScanDate', data.scanDate); }); }); } diff --git a/src/views/emis/emisWaybill/sendWaybillListNew.vue b/src/views/emis/emisWaybill/sendWaybillListNew.vue index b5027820..e9b6af8e 100644 --- a/src/views/emis/emisWaybill/sendWaybillListNew.vue +++ b/src/views/emis/emisWaybill/sendWaybillListNew.vue @@ -1021,8 +1021,8 @@ export default { this.emisWaybillList.forEach(item=>{ queryLastRecord(item.billCode).then(response => { let data=response.data; - item.lastTraceInfo=data.lastTraceInfo; - item.lastScanDate=data.scanDate; + this.$set(item, 'lastTraceInfo', data.lastTraceInfo); + this.$set(item, 'lastScanDate', data.scanDate); }); }); }