mirror of
https://gitlab.com/little-lines/frontend.git
synced 2024-11-21 23:16:52 +00:00
wheelchair access
This commit is contained in:
parent
d19acda808
commit
c5a5efbf01
2 changed files with 14 additions and 1 deletions
|
@ -36,6 +36,17 @@
|
||||||
<v-list-item-title class="text-decoration-underline">{{nearestStructureData.lon}} , {{nearestStructureData.lat}}</v-list-item-title>
|
<v-list-item-title class="text-decoration-underline">{{nearestStructureData.lon}} , {{nearestStructureData.lat}}</v-list-item-title>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
|
|
||||||
|
<v-list-item>
|
||||||
|
<template v-slot:prepend>
|
||||||
|
<v-avatar>
|
||||||
|
<img :src="detial[2].icon"
|
||||||
|
class="icon"
|
||||||
|
/>
|
||||||
|
</v-avatar>
|
||||||
|
</template>
|
||||||
|
<v-list-item-title class="text-decoration-underline">{{nearestStructureData.infoWheelchair}}</v-list-item-title>
|
||||||
|
</v-list-item>
|
||||||
|
|
||||||
</v-list>
|
</v-list>
|
||||||
|
|
||||||
<v-card-actions class="stick-bottom btnlist-height justify-sa">
|
<v-card-actions class="stick-bottom btnlist-height justify-sa">
|
||||||
|
@ -223,6 +234,8 @@ export default {
|
||||||
props: {
|
props: {
|
||||||
nearestStructureData: Object,
|
nearestStructureData: Object,
|
||||||
onClose: Function,
|
onClose: Function,
|
||||||
|
infoWheelchair: String
|
||||||
|
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -201,7 +201,7 @@ out;`;
|
||||||
|
|
||||||
nearestStructureData = {
|
nearestStructureData = {
|
||||||
...nearestStructureData,
|
...nearestStructureData,
|
||||||
infoWheelchair: infoWheelchair.value
|
infoWheelchair: infoWheelchair
|
||||||
}
|
}
|
||||||
//infoWheelchair can null,yes,no
|
//infoWheelchair can null,yes,no
|
||||||
popupData.value = nearestStructureData; // Show popup
|
popupData.value = nearestStructureData; // Show popup
|
||||||
|
|
Loading…
Reference in a new issue