gxd-uni-library-editx 1.0.61 → 1.0.63
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
|
@@ -260,6 +260,7 @@ export default {
|
|
|
260
260
|
},
|
|
261
261
|
xdDownDrawer(n){
|
|
262
262
|
this.$emit('update:show', n);
|
|
263
|
+
this.$emit("onAlert")
|
|
263
264
|
},
|
|
264
265
|
orderTotalPrice: {
|
|
265
266
|
handler(n){
|
|
@@ -464,7 +465,7 @@ export default {
|
|
|
464
465
|
}else{
|
|
465
466
|
this.selectedCardList = selected_card_list;
|
|
466
467
|
this.needPayPrice = need_pay_price;
|
|
467
|
-
this.cardPayPrice = card_total_use_price
|
|
468
|
+
this.cardPayPrice = card_total_use_price;
|
|
468
469
|
this.renderChecked = Date.now();
|
|
469
470
|
}
|
|
470
471
|
}, (err) => {
|
|
@@ -559,7 +560,7 @@ export default {
|
|
|
559
560
|
this.$xdHideLoading();
|
|
560
561
|
|
|
561
562
|
//成功回调
|
|
562
|
-
let {selected_card_list=[], need_pay_price, is_need_pop} = res;
|
|
563
|
+
let {selected_card_list=[], need_pay_price, is_need_pop, card_total_use_price} = res;
|
|
563
564
|
|
|
564
565
|
if(is_need_pop){
|
|
565
566
|
this.useCardPop(res).then((select_content) => {
|
|
@@ -602,6 +603,7 @@ export default {
|
|
|
602
603
|
this.cardList = selected_card_list.concat(this.cardList);
|
|
603
604
|
this.selectedCardList = selected_card_list.concat(this.selectedCardList);
|
|
604
605
|
this.needPayPrice = need_pay_price;
|
|
606
|
+
this.cardPayPrice = card_total_use_price
|
|
605
607
|
}
|
|
606
608
|
this.xdDownDrawerNewCard = false;
|
|
607
609
|
this.renderChecked = Date.now();
|