From efa9d440788e51b2f332a359fba366aa78da5584 Mon Sep 17 00:00:00 2001 From: zhangqun <179111901@qq.com> Date: Fri, 13 Oct 2023 09:48:07 +0800 Subject: [PATCH] =?UTF-8?q?=E9=AB=98=E9=80=9F=E6=94=B6=E8=B4=B9=E7=AB=99?= =?UTF-8?q?=E9=87=8D=E5=A4=8D=E8=A1=A5=E5=85=85=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/highWay/runData/form.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pages/highWay/runData/form.vue b/pages/highWay/runData/form.vue index ba5b7bf..a20e226 100644 --- a/pages/highWay/runData/form.vue +++ b/pages/highWay/runData/form.vue @@ -504,8 +504,7 @@ this.form.highwaySubDataList = []; this.highwaySubDataList.map(item => { let idx = arr.findIndex(item2 => { - return item.highWayLineCode && item2.highwayName == item.managementUnitName && item2.tollStationName == item - .stationName; + return item2.tollStationName == item.stationName && item2.highwayName == item.managementUnitName; }); if (idx > -1) { item.isFinish = checkNotEmpty(arr[idx].entranceVehicleCount) && checkNotEmpty(arr[idx].exitVehicleCount) ? true : false;