|
@@ -40,7 +40,12 @@
|
|
|
<text v-if='infoMation.orderType==1'>价格:¥{{infoMation.discountPrice}}/艘</text>
|
|
|
</view>
|
|
|
<view class="price">
|
|
|
- <text style="font-size: 30rpx;">数量:</text>X<text>{{infoMation.detailDto&&infoMation.detailDto.length}}</text>
|
|
|
+ <block v-if="infoMation.orderType!=3">
|
|
|
+ <text style="font-size: 30rpx;">数量:</text>X<text>{{infoMation.detailDto&&infoMation.detailDto.length}}</text>
|
|
|
+ </block>
|
|
|
+ <block v-else>
|
|
|
+ <text style="font-size: 30rpx;">数量:</text>X<text>{{infoMation.detailJoinDto&&infoMation.detailJoinDto.length}}</text>
|
|
|
+ </block>
|
|
|
</view>
|
|
|
</template>
|
|
|
<template v-if="merchantType==4">
|
|
@@ -67,12 +72,22 @@
|
|
|
<!-- 游客信息 -->
|
|
|
<view class="orderInfo yk" style="padding-bottom: 30rpx;" v-if="merchantType==10">
|
|
|
<view class="tit">游客信息</view>
|
|
|
- <u-cell :border="false" v-for="(i,index) in infoMation.detailDto">
|
|
|
- <text slot="icon" class="txt">{{i.touristName}}</text>
|
|
|
- >
|
|
|
- <text slot="title" class="val">{{i.touristCode}}</text>
|
|
|
- <text slot="right-icon">航班号:{{infoMation.boatNo||''}}</text>
|
|
|
- </u-cell>
|
|
|
+ <block v-if="infoMation.detailDto&&infoMation.detailDto.length>0">
|
|
|
+ <u-cell :border="false" v-for="(i,index) in infoMation.detailDto">
|
|
|
+ <text slot="icon" class="txt">{{i.touristName}}</text>
|
|
|
+ >
|
|
|
+ <text slot="title" class="val">{{i.touristCode}}</text>
|
|
|
+ <text slot="right-icon">航班号:{{infoMation.boatNo||''}}</text>
|
|
|
+ </u-cell>
|
|
|
+ </block>
|
|
|
+ <block v-if="infoMation.detailJoinDto&&infoMation.detailJoinDto.length>0">
|
|
|
+ <u-cell :border="false" v-for="(i,index) in infoMation.detailJoinDto">
|
|
|
+ <text slot="icon" class="txt">{{i.touristName}}</text>
|
|
|
+ >
|
|
|
+ <text slot="title" class="val">{{i.touristCode}}</text>
|
|
|
+ <text slot="right-icon">航班号:{{infoMation.boatNo||''}}</text>
|
|
|
+ </u-cell>
|
|
|
+ </block>
|
|
|
</view>
|
|
|
<!-- 订单信息 -->
|
|
|
<view class="orderInfo " style="padding-bottom: 30rpx;">
|