fix: 修改Route中对Staition的下拉框,增加Ship类型

This commit is contained in:
Xu Zhimeng 2024-10-12 11:42:39 +08:00
parent 2481346c70
commit 47aaa0d794

View File

@ -944,7 +944,7 @@ export default {
computed: { computed: {
stationSelectOptions() { stationSelectOptions() {
return this.originalDataList return this.originalDataList
.filter(({ stationType }) => stationType == 'Car') .filter(({ stationType }) => stationType == 'Car' || stationType == 'Ship')
.map(({ stationName: label }) => ({ .map(({ stationName: label }) => ({
label, label,
value: label, value: label,