This commit is contained in:
parent
2bc3828ab5
commit
d64c4ad26f
@ -75,8 +75,16 @@
|
|||||||
<div v-html="generate_icon(item.hotel,'darkblue')"></div>
|
<div v-html="generate_icon(item.hotel,'darkblue')"></div>
|
||||||
</l-icon>
|
</l-icon>
|
||||||
<l-popup>
|
<l-popup>
|
||||||
<div>
|
<h1 class="row text-medium text-center">{{item.hotel.sname}}</h1>
|
||||||
Hotel: {{item.hotel.display_name}}
|
<span class="row text-small text-gray">{{item.hotel.display_name}}</span>
|
||||||
|
<div class="row">
|
||||||
|
<textarea-autosize
|
||||||
|
class="col-12 col-sm-10"
|
||||||
|
placeholder="Notes"
|
||||||
|
v-model="item.hotel.notes"
|
||||||
|
:min-height="30"
|
||||||
|
:max-height="350"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</l-popup>
|
</l-popup>
|
||||||
|
|
||||||
@ -91,8 +99,16 @@
|
|||||||
<div v-html="generate_icon(place,'cadetblue')"></div>
|
<div v-html="generate_icon(place,'cadetblue')"></div>
|
||||||
</l-icon>
|
</l-icon>
|
||||||
<l-popup>
|
<l-popup>
|
||||||
<div>
|
<h1 class="row text-medium text-center">{{place.sname}}</h1>
|
||||||
Restaurant: {{place.display_name}}
|
<span class="row text-small text-gray">{{place.display_name}}</span>
|
||||||
|
<div class="row">
|
||||||
|
<textarea-autosize
|
||||||
|
class="col-12 col-sm-10"
|
||||||
|
placeholder="Notes"
|
||||||
|
v-model="place.notes"
|
||||||
|
:min-height="30"
|
||||||
|
:max-height="350"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</l-popup>
|
</l-popup>
|
||||||
</l-marker>
|
</l-marker>
|
||||||
@ -101,8 +117,16 @@
|
|||||||
<div v-html="generate_icon(place)"></div>
|
<div v-html="generate_icon(place)"></div>
|
||||||
</l-icon>
|
</l-icon>
|
||||||
<l-popup>
|
<l-popup>
|
||||||
<div>
|
<h1 class="row text-medium text-center">{{place.sname}}</h1>
|
||||||
Activity: {{place.display_name}}
|
<span class="row text-small text-gray">{{place.display_name}}</span>
|
||||||
|
<div class="row">
|
||||||
|
<textarea-autosize
|
||||||
|
class="col-12 col-sm-10"
|
||||||
|
placeholder="Notes"
|
||||||
|
v-model="place.notes"
|
||||||
|
:min-height="30"
|
||||||
|
:max-height="350"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</l-popup>
|
</l-popup>
|
||||||
</l-marker>
|
</l-marker>
|
||||||
@ -198,7 +222,6 @@
|
|||||||
:max-height="350"
|
:max-height="350"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</l-popup>
|
</l-popup>
|
||||||
</l-marker>
|
</l-marker>
|
||||||
<l-marker v-for="place in journey_data.main[journey_step_data.section].places.activities" :lat-lng="place.latlon">
|
<l-marker v-for="place in journey_data.main[journey_step_data.section].places.activities" :lat-lng="place.latlon">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user