Commit f405b1ec authored by youjie's avatar youjie

no message

parent f777e825
<template> <template>
<div class="q-mt-lg"> <div class="q-mt-lg" :class="{'q-px-md': $q.screen.width < 1220&&$q.platform.is.mobile}">
<div class="text-subtitle1 text-weight-bold row items-center"> <div class="text-subtitle1 text-weight-bold row items-center">
<span class="col">每日行程</span> <span class="col">每日行程</span>
<span class=""> <span class="">
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
<q-tab name="image" @click="changeHandler" icon="iconfont iconimage" class="no-padding q-mr-lg" label="圖文模式" /> <q-tab name="image" @click="changeHandler" icon="iconfont iconimage" class="no-padding q-mr-lg" label="圖文模式" />
<q-tab name="dates" @click="changeHandler" icon="iconfont iconrili" class="no-padding q-mr-lg" label="日曆模式" /> <q-tab name="dates" @click="changeHandler" icon="iconfont iconrili" class="no-padding q-mr-lg" label="日曆模式" />
</q-tabs> </q-tabs>
<list :days="trip.dayList" v-if="displayType=='image'"></list> <list :days="trip.dayList" v-if="displayType=='image'"></list>
<calendar :days="trip.dayList" v-if="displayType=='dates'"></calendar> <calendar :days="trip.dayList" v-if="displayType=='dates'"></calendar>
</div> </div>
......
...@@ -244,12 +244,10 @@ ...@@ -244,12 +244,10 @@
></calendar> ></calendar>
</q-popup-proxy> </q-popup-proxy>
</q-field> </q-field>
<template v-if="currentPrice.startDate">
<order-preview class="q-pa-md" <order-preview class="q-pa-md"
:price="currentPrice" :price="currentPrice"
@reset="resetHandler" @reset="resetHandler"
></order-preview> ></order-preview>
</template>
</div> </div>
<div class="text-h6 q-pt-lg" v-if="$q.platform.is.mobile">所選方案詳情</div> <div class="text-h6 q-pt-lg" v-if="$q.platform.is.mobile">所選方案詳情</div>
...@@ -736,7 +734,6 @@ export default { ...@@ -736,7 +734,6 @@ export default {
//console.log(e) //console.log(e)
}, },
resetHandler() { resetHandler() {
this.currentPrice.startDate = ''
this.$refs.calendar.reset(); this.$refs.calendar.reset();
}, },
changeChosenDateHandler(val) { changeChosenDateHandler(val) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment