jufubao-movie 1.0.29-beta1 → 1.0.29-beta3
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
|
@@ -165,6 +165,7 @@
|
|
|
165
165
|
v-if="!payCard"
|
|
166
166
|
:layoutInfo="layoutInfo"
|
|
167
167
|
:show.sync="showCardPay"
|
|
168
|
+
:payThird="!!payThird"
|
|
168
169
|
:payChannels="payChannels"
|
|
169
170
|
:jwxSDK="jwxSDK"
|
|
170
171
|
:validImageAPIUrl="validImageAPIUrl"
|
|
@@ -205,6 +206,7 @@
|
|
|
205
206
|
:getUserWalletList="getUserWalletList"
|
|
206
207
|
:useBindedWallet="p_useBindedWallet"
|
|
207
208
|
@onChose="handleWalletChose"
|
|
209
|
+
@onAlert="() => hasAlertCardChose = true"
|
|
208
210
|
></xd-wallet-chose>
|
|
209
211
|
|
|
210
212
|
</view>
|
|
@@ -580,7 +582,12 @@
|
|
|
580
582
|
//票券跟钱包都未选择,给用户提示
|
|
581
583
|
if(selected_card_list.length == 0 && selected_wallet_list.length == 0){
|
|
582
584
|
if(!this.hasAlertCardChose){
|
|
583
|
-
this.
|
|
585
|
+
if(this.payCard){
|
|
586
|
+
this.showCardPayChose = true;
|
|
587
|
+
}else{
|
|
588
|
+
this.showWalletChose = true;
|
|
589
|
+
}
|
|
590
|
+
// this.showCardPayChose = true;
|
|
584
591
|
return false;
|
|
585
592
|
}else{
|
|
586
593
|
//支持补差, 提示是否使用补差
|