From e4e9e7702f3bf183d1ca84caa9b5fbcef2fb05f5 Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Tue, 14 Jan 2025 10:12:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=85=8D=E9=80=81bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../distribution/deliverylist/distributionDeliveryList.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/distribution/deliverylist/distributionDeliveryList.vue b/src/views/distribution/deliverylist/distributionDeliveryList.vue index 3083e6c2..4a641cdb 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryList.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryList.vue @@ -699,7 +699,7 @@ export default { getVehicleList(1, 10, '').then(res => { const data = res.data.data; let po = []; - data.records.forEach(item => { + data.forEach(item => { let a = { dictKey: item.id, dictValue: item.vehicleNub, @@ -707,7 +707,7 @@ export default { po.push(a); }); this.vehicleData = po; - rv(res.data.data.records); + rv(res.data.data); }); }); }, @@ -725,7 +725,7 @@ export default { po.push(a); }); this.driverData = po; - rv(res.data.data.records); + rv(res.data.data); }); }); },