jufubao-movie 1.0.57-beta2 → 1.0.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -162,11 +162,12 @@
|
|
|
162
162
|
<view v-if="otherPayMethod.length" class="jfb-movie-confirm__body-card">
|
|
163
163
|
<template v-for="item in otherPayMethod">
|
|
164
164
|
<xd-list-item v-if="item.method === 'card'" :key="item.method" :label="item.show_name" paddingLR="0" size="small" :showRight="!(choseCoupon && choseCoupon.cardPayPrice)" @click="toChoseCard">
|
|
165
|
+
<view slot="label">{{item.show_name}} <text v-if="choseCard && choseCard.cardPayPrice" style="color:red;margin-left: 4px;">(已选{{ choseCard.selectedCardList.length }}张)</text></view>
|
|
165
166
|
<view v-if="(choseCoupon && choseCoupon.cardPayPrice)">
|
|
166
167
|
<view style="color:#CCCCCC;font-size: 20rpx">已使用其他票券,不可用</view>
|
|
167
168
|
</view>
|
|
168
169
|
<view v-else>
|
|
169
|
-
<view v-if="choseCard && choseCard.cardPayPrice" slot="label">{{item.show_name}} <text style="color:red;margin-left: 4px;">(已选{{ choseCard.selectedCardList.length }}张)</text></view>
|
|
170
|
+
<!-- <view v-if="choseCard && choseCard.cardPayPrice" slot="label">{{item.show_name}} <text style="color:red;margin-left: 4px;">(已选{{ choseCard.selectedCardList.length }}张)</text></view> -->
|
|
170
171
|
<template v-if="choseCard && choseCard.cardPayPrice">
|
|
171
172
|
<xd-unit v-if="choseCard.unit == '次'" :price="choseCard.cardPayPoint" :isOld="false" :fontSize="24" :iconSize="0.3" :unit="choseCard.unit"></xd-unit>
|
|
172
173
|
<xd-unit v-else :price="choseCard.cardPayPrice" :isOld="false" :fontSize="24" :iconSize="0.3" :unit="choseCard.unit || ''"></xd-unit>
|
|
@@ -589,8 +590,12 @@
|
|
|
589
590
|
},
|
|
590
591
|
//确认订单价格改变,清空选择
|
|
591
592
|
clearCheckedWhenPriceChange(){
|
|
592
|
-
this.$refs['xdCardPayChose']
|
|
593
|
-
|
|
593
|
+
if(this.$refs['xdCardPayChose']){
|
|
594
|
+
this.$refs['xdCardPayChose'].clearChecked();
|
|
595
|
+
}
|
|
596
|
+
if(this.$refs['xdWalletChose']){
|
|
597
|
+
this.$refs['xdWalletChose'].clearChecked();
|
|
598
|
+
}
|
|
594
599
|
},
|
|
595
600
|
handleChoseVipCard(vip_card_id){
|
|
596
601
|
this.vip_card_id = vip_card_id;
|
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
:isShowIcon="false"
|
|
169
169
|
:font-size="24"/> -->
|
|
170
170
|
<!-- {{item.sale_price}} -->
|
|
171
|
-
<CusPrice :
|
|
171
|
+
<CusPrice :isPlus="is_plus_site" :showPrice="item.show_prices" range="起" type="schedule"></CusPrice>
|
|
172
172
|
</view>
|
|
173
173
|
<!-- <view class="_sub"> <xd-coins class="xd-coins" :size="0.2"></xd-coins> 起</view> -->
|
|
174
174
|
</view>
|