From d2f6d14f9e35f06701514f656b0c9913ac5f8fbd Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Sun, 4 Jan 2026 11:02:03 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=9F=E8=B8=AA=E9=A2=84=E8=AD=A6=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/emis/emisWaybill/centerWaybillList.vue | 4 ++-- src/views/emis/emisWaybill/dispatchWaybillList.vue | 4 ++-- src/views/emis/emisWaybill/sendWaybillList.vue | 4 ++-- src/views/emis/emisWaybill/sendWaybillListNew.vue | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) 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); }); }); }