Gate type
This commit is contained in:
parent
26a935997b
commit
1650b44628
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<el-link type="primary" @click="show(parking.index)">{{parking.name}} {{parking.number}}</el-link>
|
||||
<el-link type="primary" @click="show(parking.index)">{{parking.name}} {{parking.number}} {{parking.type}}</el-link>
|
||||
</template>
|
||||
|
||||
<script lang="js">
|
||||
|
@ -102,7 +102,7 @@ exports.readGroundnetXML = function (fDir, icao, force) {
|
||||
}).sort();
|
||||
|
||||
store.default.dispatch('setParkings', parkingNodes.map(
|
||||
p => ({index: Number(p.attrs.index), name: String(p.attrs.name), number: Number(p.attrs.number)}
|
||||
p => ({index: Number(p.attrs.index), name: String(p.attrs.name), number: Number(p.attrs.number), type: String(p.attrs.type)}
|
||||
)).sort((p1, p2) => {
|
||||
if (p1.name === p2.name) {
|
||||
return p1.number - p2.number
|
||||
|
Loading…
Reference in New Issue
Block a user