gxd-uni-library-editx 1.0.79 → 1.0.80
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
|
@@ -249,6 +249,10 @@ export default {
|
|
|
249
249
|
type: Boolean,
|
|
250
250
|
default: false
|
|
251
251
|
},
|
|
252
|
+
payThird: { //是否支持补差
|
|
253
|
+
tyep: Boolean,
|
|
254
|
+
default: true
|
|
255
|
+
},
|
|
252
256
|
// payChannels: { //三方支付列表
|
|
253
257
|
// type: Array,
|
|
254
258
|
// default: () => {
|
|
@@ -614,6 +618,10 @@ export default {
|
|
|
614
618
|
},
|
|
615
619
|
|
|
616
620
|
handleConfirmAllWxPay(){
|
|
621
|
+
if(!this.payThird){
|
|
622
|
+
this.$xdAlert({content: "请选择兑换方式"});
|
|
623
|
+
return Promise.reject("请选择兑换方式");
|
|
624
|
+
}
|
|
617
625
|
return new Promise((resolve, reject) => {
|
|
618
626
|
uni.showModal({
|
|
619
627
|
title: '提示',
|