jufubao-movie 1.0.29-beta2 → 1.0.29-beta4
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
|
@@ -126,7 +126,8 @@
|
|
|
126
126
|
<xd-content-xss style="color: #999" :html="notice"></xd-content-xss>
|
|
127
127
|
</view>
|
|
128
128
|
</view>
|
|
129
|
-
|
|
129
|
+
|
|
130
|
+
<view v-if="otherPayMethod.length" class="jfb-movie-confirm__body-card">
|
|
130
131
|
<template v-for="item in otherPayMethod">
|
|
131
132
|
<xd-list-item v-if="item.method === 'card'" :key="item.method" :label="item.show_name" paddingLR="0rpx" size="small" showRight @click="toChoseCard">
|
|
132
133
|
<view v-if="choseCard && choseCard.cardPayPrice" slot="label">{{item.show_name}} <text style="color:red;margin-left: 4px;">(已选{{ choseCard.selectedCardList.length }}张)</text></view>
|
|
@@ -206,6 +207,7 @@
|
|
|
206
207
|
:getUserWalletList="getUserWalletList"
|
|
207
208
|
:useBindedWallet="p_useBindedWallet"
|
|
208
209
|
@onChose="handleWalletChose"
|
|
210
|
+
@onAlert="() => hasAlertCardChose = true"
|
|
209
211
|
></xd-wallet-chose>
|
|
210
212
|
|
|
211
213
|
</view>
|
|
@@ -581,7 +583,12 @@
|
|
|
581
583
|
//票券跟钱包都未选择,给用户提示
|
|
582
584
|
if(selected_card_list.length == 0 && selected_wallet_list.length == 0){
|
|
583
585
|
if(!this.hasAlertCardChose){
|
|
584
|
-
this.
|
|
586
|
+
if(this.payCard){
|
|
587
|
+
this.showCardPayChose = true;
|
|
588
|
+
}else{
|
|
589
|
+
this.showWalletChose = true;
|
|
590
|
+
}
|
|
591
|
+
// this.showCardPayChose = true;
|
|
585
592
|
return false;
|
|
586
593
|
}else{
|
|
587
594
|
//支持补差, 提示是否使用补差
|