jufubao-movie 1.0.58 → 1.0.59
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
|
@@ -16,6 +16,17 @@ export default {
|
|
|
16
16
|
{label: '否', value: 'N'},
|
|
17
17
|
]
|
|
18
18
|
},
|
|
19
|
+
{
|
|
20
|
+
label: "支付时是否跳过补差提示:",
|
|
21
|
+
ele: 'xd-radio',
|
|
22
|
+
valueKey: "skipTip",
|
|
23
|
+
value: data['skipTip'] || 'N',
|
|
24
|
+
groupKey:'content',
|
|
25
|
+
list: [
|
|
26
|
+
{label: '是', value: 'Y'},
|
|
27
|
+
{label: '否', value: 'N'},
|
|
28
|
+
],
|
|
29
|
+
},
|
|
19
30
|
{
|
|
20
31
|
label: '去支付路径:',
|
|
21
32
|
ele: 'xd-select-pages-path',
|
|
@@ -791,7 +791,9 @@
|
|
|
791
791
|
}else{
|
|
792
792
|
//支持补差, 提示是否使用补差
|
|
793
793
|
if(this.payThird){
|
|
794
|
-
|
|
794
|
+
if(this.skipTip === 'N'){
|
|
795
|
+
await this.handleConfirmAllWxPay();
|
|
796
|
+
}
|
|
795
797
|
}else{
|
|
796
798
|
//不支持补差,仅提示
|
|
797
799
|
return this.$xdAlert({content: "请选择兑换方式"})
|
|
@@ -944,6 +946,7 @@
|
|
|
944
946
|
init(container) {
|
|
945
947
|
this.bgColor = this.$colorChange(this.mainColor).alpha(0.1).toString();
|
|
946
948
|
this.skipToPay = getContainerPropsValue(container, 'content.skipToPay', 'N');
|
|
949
|
+
this.skipTip = getContainerPropsValue(container, "content.skipTip", "N");
|
|
947
950
|
this.payPath = getContainerPropsValue(container, 'content.payPath', {value: ''}).value;
|
|
948
951
|
this.paySuccessPath = getContainerPropsValue(container, 'content.paySuccessPath', {value: "/pages/order/success"}).value;
|
|
949
952
|
this.bindCard = getContainerPropsValue(container,"content.bindCard","1");
|