Commit 31d096d6 authored by 潘永坪's avatar 潘永坪

联票逻辑修改

parent 00a694ad
...@@ -11,7 +11,8 @@ ...@@ -11,7 +11,8 @@
</view> </view>
<view class="middle"> <view class="middle">
<view class="productInfo" v-for="(item,index) in orderInfo.childs" :key="index"> <!-- 等于0是不显示的子订单 -->
<view class="productInfo" v-for="(item,index) in orderInfo.childs" v-if="item.exchangeMode!=0" :key="index">
<view class="product-top"> <view class="product-top">
<view class="product-name"> <view class="product-name">
<text>{{item.productName}}</text> <text>{{item.productName}}</text>
...@@ -234,7 +235,8 @@ ...@@ -234,7 +235,8 @@
<view class="rufundRule"> <view class="rufundRule">
<!-- 等于3退票规则以子订单为准 --> <!-- 等于3退票规则以子订单为准 -->
<view style="padding: 32rpx 32rpx 0 32rpx;" v-if="orderInfo.isRefund==3"> <view style="padding: 32rpx 32rpx 0 32rpx;" v-if="orderInfo.isRefund==3">
<view v-for="(item,index) in orderInfo.childs" :key="index" > <!-- 等于0为不显示的子订单 -->
<view v-for="(item,index) in orderInfo.childs" v-if="item.exchangeMode!=0" :key="index" >
<view class="rule-title"> <view class="rule-title">
{{item.productName}}退改规则 {{item.productName}}退改规则
</view> </view>
...@@ -376,7 +378,8 @@ ...@@ -376,7 +378,8 @@
申请退票 申请退票
</view> </view>
<radio-group @change="radioChange"> <radio-group @change="radioChange">
<label class="subradio" v-if="item.ifRefund" v-for="(item,index) in orderInfo.childs" :key="index"> <!-- 等于0为不显示的子订单 -->
<label class="subradio" v-if="item.exchangeMode!=0&&item.ifRefund" v-for="(item,index) in orderInfo.childs" :key="index">
<text>{{item.productName}}</text> <text>{{item.productName}}</text>
<radio :value="item.id" :checked="refundOrderId==item.id"/> <radio :value="item.id" :checked="refundOrderId==item.id"/>
</label> </label>
......
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