Commit 4dfe1fcb authored by youjie's avatar youjie

no message

parent 2298959a
...@@ -118,6 +118,7 @@ ...@@ -118,6 +118,7 @@
<span class="q-mr-sm" <span class="q-mr-sm"
>({{CarObj.PeopleNum}}人/辆)</span >({{CarObj.PeopleNum}}人/辆)</span
> >
<span class="q-mr-sm" v-if="details.TravelHours>0">{{details.TravelHours+'小時'}}</span>
</div> </div>
</div> </div>
<q-separator color="grey-2" class="q-mt-md" /> <q-separator color="grey-2" class="q-mt-md" />
...@@ -293,6 +294,15 @@ ...@@ -293,6 +294,15 @@
</template> </template>
<q-popup-proxy :offset="[0, 0]" ref="qDateProxy2"> <q-popup-proxy :offset="[0, 0]" ref="qDateProxy2">
<div class="row"> <div class="row">
<!-- <q-date
mask="YYYY-MM-DD"
:title="$t('search_date_begin')"
subtitle="選擇"
v-model="getBusTimeDate"
:options="optionsFn"
@input="getTime(3)"
/>
<div class="q-px-sm"></div> -->
<q-time format24h v-model="getBusTime" mask="HH:mm" <q-time format24h v-model="getBusTime" mask="HH:mm"
@input="getTime(2)"/> @input="getTime(2)"/>
</div> </div>
...@@ -468,6 +478,10 @@ ...@@ -468,6 +478,10 @@
<div style="width: 80px">{{details.CarType==1?'接':'送'}}機機場:</div> <div style="width: 80px">{{details.CarType==1?'接':'送'}}機機場:</div>
<div class="q-ml-md ellipsis-2-lines">{{AirportObj.Name}}</div> <div class="q-ml-md ellipsis-2-lines">{{AirportObj.Name}}</div>
</div> </div>
<div class="row q-pb-xs no-wrap" v-if="AirportObj&&AirportObj.Name">
<div style="width: 80px">{{details.CarType==1?'抵達':'起飛'}}時間:</div>
<div class="q-ml-md ellipsis-2-lines">{{parameters.FlightTime}}</div>
</div>
<div class="row q-pb-xs no-wrap" v-if="parameters.GetonAddress"> <div class="row q-pb-xs no-wrap" v-if="parameters.GetonAddress">
<div style="width: 80px">上車點:</div> <div style="width: 80px">上車點:</div>
<div class="q-ml-md ellipsis-2-lines">{{parameters.GetonAddress}}</div> <div class="q-ml-md ellipsis-2-lines">{{parameters.GetonAddress}}</div>
...@@ -613,6 +627,7 @@ export default { ...@@ -613,6 +627,7 @@ export default {
}, },
flightTime: null,//航班起飞抵达时间 flightTime: null,//航班起飞抵达时间
getBusTime: null,//预约车时间 getBusTime: null,//预约车时间
getBusTimeDate: null,//预约日期
TotalPeople: 0,//总人数 TotalPeople: 0,//总人数
onoffbus: 1,//1 上车 2下车 onoffbus: 1,//1 上车 2下车
}; };
...@@ -687,6 +702,7 @@ export default { ...@@ -687,6 +702,7 @@ export default {
this.chosenObj = this.OrderDate.orderInfo; this.chosenObj = this.OrderDate.orderInfo;
this.parameters.ProductId = this.order.order.Id this.parameters.ProductId = this.order.order.Id
this.parameters.OrderDate = this.OrderDate.startDate this.parameters.OrderDate = this.OrderDate.startDate
this.getBusTimeDate = this.OrderDate.startDate
this.parameters.Unit_Price = this.OrderDate.originalB2CPrice this.parameters.Unit_Price = this.OrderDate.originalB2CPrice
this.parameters.Num = this.chosenObj.Count this.parameters.Num = this.chosenObj.Count
this.parameters.Money = this.OrderDate.sumPrice this.parameters.Money = this.OrderDate.sumPrice
...@@ -827,6 +843,8 @@ export default { ...@@ -827,6 +843,8 @@ export default {
}else if(type==2){ }else if(type==2){
this.parameters.OrderDate = this.OrderDate.startDate+' '+this.getBusTime this.parameters.OrderDate = this.OrderDate.startDate+' '+this.getBusTime
this.$refs.qDateProxy2.hide() this.$refs.qDateProxy2.hide()
}else if(type==3){
this.parameters.OrderDate = this.OrderDate.startDate+' '+this.getBusTime
} }
}, },
......
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