Commit cc3b6d9a authored by 黄奎's avatar 黄奎

Merge branch 'B2C' of http://gitlab.oytour.com/zk123/jz_travel into B2C

parents e3986973 9389093a
......@@ -210,12 +210,14 @@
<view class="fz28">
<view>本团机位</view>
<template v-if="priceList&&priceList.length>0">
<view v-if="priceList[0].CSeat>0">头等舱: {{ priceList[0].cSeat }}</view>
<view v-if="priceList[0].FSeat>0">商务 : {{ priceList[0].fSeat }}</view>
<view v-if="priceList[0].YSeat>0">经济: {{ priceList[0].ySeat }}</view>
<view v-if="priceList[0].cSeat>0">头等舱: {{ priceList[0].cSeat }}</view>
<view v-if="priceList[0].fSeat>0">商务舱: {{ priceList[0].fSeat }}</view>
<view v-if="priceList[0].ySeat>0">经济舱: {{ priceList[0].ySeat }}</view>
</template>
</view>
<view class="fz28 PT15 PB20">报名人数{{ dataList.offerNumber?dataList.offerNumber:'' }}</view>
<view class="fz28 PT15 PB20">报名人数:
<template v-if="priceList&&priceList.length>0">{{ priceList[0].offerFSeat+priceList[0].offerCSeat+priceList[0].offerYSeat }}</template>
</view>
</view>
</view>
<view class="bjLine"></view>
......@@ -251,25 +253,25 @@
<template v-if="priceList.length>0">
<view class="fz28 PB20">
<view class="priceFlightTitle row color000">
<view class="flex1"></view>
<view class="flex1">出发机场</view>
<view class="flex1">到达机场</view>
<view class="flex1">班号</view>
<view class="flex1">起飞时间</view>
<view class="flex1">到达时间</view>
</view>
<view class="priceFlightText fz28 row color666 MT20" v-for="(item,index) in priceList[0].priceFlight">
<view class="flex1">
<view class="fz24"> {{ item.flightNumber }}</view>
{{ item.alName }}
<view class="fz24">{{ item.flightNumber }}</view>
</view>
<view class="flex1">
<view class="fz24"> {{ item.startDate }} {{ item.departureTime }}</view>
{{ item.departureAirPortName }}
<view class="fz24">{{ item.startDate }} {{ item.departureTime }} </view>
<view v-if="item.stopoverAirPortName" class="fz24">
中:{{ item.stopoverAirPortName }}
</view>
</view>
<view class="flex1">
<view class="fz24"> {{ item.arriveDate }} {{ item.arrivalTime }}</view>
{{ item.arrivalAirPortName }}
<view class="fz24">{{ item.arriveDate }} {{ item.arrivalTime }} </view>
</view>
</view>
</view>
......
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