From 58a2ca01928961c45179fe3c20e69b4bd18a148f Mon Sep 17 00:00:00 2001 From: yuan Date: Wed, 13 Oct 2021 16:31:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=BC=E5=90=88=E6=BC=94=E7=BB=83=E5=B1=8F?= =?UTF-8?q?=E8=94=BD=E6=8E=89=E8=BD=A6=E8=BE=86=E6=AE=B5=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/modules/map.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/modules/map.js b/src/store/modules/map.js index 00f76c630..de6da17b4 100644 --- a/src/store/modules/map.js +++ b/src/store/modules/map.js @@ -673,7 +673,7 @@ const map = { const tepData = findElement(item.amendPointsList || [], code); if (store.state.training.prdType === '01' && item.type === 'LOCAL' && tepData) { amendData = tepData; - } else if (['02', '04', '05', '07'].includes(store.state.training.prdType) && item.type === 'CENTER' && tepData) { + } else if (['02', '03', '04', '05', '07'].includes(store.state.training.prdType) && item.type === 'CENTER' && tepData) { amendData = tepData; } else if (store.state.training.prdType === '09' && item.type === 'DEPOT_IL' && tepData) { amendData = tepData; @@ -704,7 +704,7 @@ const map = { ((item.stationCodeList.includes(stationCode) && item.elementList.includes(deviceCode)) || !stationCode) ) { flag = true; - } else if (['02', '04', '05', '07'].includes(store.state.training.prdType) && item.type === 'CENTER' && item.elementList.includes(deviceCode)) { + } else if (['02', '03', '04', '05', '07'].includes(store.state.training.prdType) && item.type === 'CENTER' && item.elementList.includes(deviceCode)) { flag = true; } else if (store.state.training.prdType === '09' && item.type === 'DEPOT_IL' && item.stationCodeList.includes(stationCode) && item.elementList.includes(deviceCode)) { flag = true;