From 47aaa0d794a1bc871937aa83982525b89e4ce1d3 Mon Sep 17 00:00:00 2001 From: Xu Zhimeng Date: Sat, 12 Oct 2024 11:42:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9Route=E4=B8=AD?= =?UTF-8?q?=E5=AF=B9Staition=E7=9A=84=E4=B8=8B=E6=8B=89=E6=A1=86=EF=BC=8C?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0Ship=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/stationOperation/components/MapPane.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/stationOperation/components/MapPane.vue b/src/views/stationOperation/components/MapPane.vue index 2867bde..a2b24ae 100644 --- a/src/views/stationOperation/components/MapPane.vue +++ b/src/views/stationOperation/components/MapPane.vue @@ -944,7 +944,7 @@ export default { computed: { stationSelectOptions() { return this.originalDataList - .filter(({ stationType }) => stationType == 'Car') + .filter(({ stationType }) => stationType == 'Car' || stationType == 'Ship') .map(({ stationName: label }) => ({ label, value: label,