mirror of
https://gitlab.com/little-lines/frontend.git
synced 2024-11-21 19:16:53 +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>
|
||||
|
||||
<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-card-actions class="stick-bottom btnlist-height justify-sa">
|
||||
|
@ -223,6 +234,8 @@ export default {
|
|||
props: {
|
||||
nearestStructureData: Object,
|
||||
onClose: Function,
|
||||
infoWheelchair: String
|
||||
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
|
|
@ -201,7 +201,7 @@ out;`;
|
|||
|
||||
nearestStructureData = {
|
||||
...nearestStructureData,
|
||||
infoWheelchair: infoWheelchair.value
|
||||
infoWheelchair: infoWheelchair
|
||||
}
|
||||
//infoWheelchair can null,yes,no
|
||||
popupData.value = nearestStructureData; // Show popup
|
||||
|
|
Loading…
Reference in a new issue