|
|
@ -207,6 +207,7 @@ |
|
|
|
import passwordInput from "../../components/password-input/password-input.vue"; |
|
|
|
import passwordInput from "../../components/password-input/password-input.vue"; |
|
|
|
import cjSlider from '../../components/cj-slider/cj-slider.vue'; |
|
|
|
import cjSlider from '../../components/cj-slider/cj-slider.vue'; |
|
|
|
import wybPopup from '../../components/wyb-popup/wyb-popup.vue'; |
|
|
|
import wybPopup from '../../components/wyb-popup/wyb-popup.vue'; |
|
|
|
|
|
|
|
import alipayApi from '../../Utils/js/alipay.js'; |
|
|
|
import { |
|
|
|
import { |
|
|
|
getQrCodeDetail, |
|
|
|
getQrCodeDetail, |
|
|
|
getH5AccessToken, |
|
|
|
getH5AccessToken, |
|
|
@ -460,14 +461,14 @@ |
|
|
|
let storetype = ''; |
|
|
|
let storetype = ''; |
|
|
|
let storeprice = ''; |
|
|
|
let storeprice = ''; |
|
|
|
if (this.storeList.discountActivity != '' && this.storeList.discountActivity != null) { |
|
|
|
if (this.storeList.discountActivity != '' && this.storeList.discountActivity != null) { |
|
|
|
if (item >= this.storediscountCondition && (this.storediscountType == 1 || this.storediscountType == |
|
|
|
if (item >= this.storediscountCondition) { |
|
|
|
2)) { |
|
|
|
|
|
|
|
storetype = this.storediscountType; |
|
|
|
|
|
|
|
storeprice = this.storediscountPrice; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
storetype = this.storediscountType; |
|
|
|
storetype = this.storediscountType; |
|
|
|
storeprice = this.storediscountPrice; |
|
|
|
storeprice = this.storediscountPrice; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// else { |
|
|
|
|
|
|
|
// storetype = this.storediscountType; |
|
|
|
|
|
|
|
// storeprice = this.storediscountPrice; |
|
|
|
|
|
|
|
// } |
|
|
|
} |
|
|
|
} |
|
|
|
let phone = ''; |
|
|
|
let phone = ''; |
|
|
|
if (app.globalData.userInfo) { |
|
|
|
if (app.globalData.userInfo) { |
|
|
@ -676,6 +677,9 @@ |
|
|
|
}, |
|
|
|
}, |
|
|
|
// 创建订单 |
|
|
|
// 创建订单 |
|
|
|
createJSAPIOrder(item) { |
|
|
|
createJSAPIOrder(item) { |
|
|
|
|
|
|
|
uni.showLoading({ |
|
|
|
|
|
|
|
title:'请求中' |
|
|
|
|
|
|
|
}) |
|
|
|
// "微信:WECHAT 支付宝:ALIPAY 银联:UQRCODEPAY", |
|
|
|
// "微信:WECHAT 支付宝:ALIPAY 银联:UQRCODEPAY", |
|
|
|
let phone = ''; |
|
|
|
let phone = ''; |
|
|
|
if (app.globalData.userInfo) { |
|
|
|
if (app.globalData.userInfo) { |
|
|
@ -691,6 +695,7 @@ |
|
|
|
"userPhone": phone |
|
|
|
"userPhone": phone |
|
|
|
} |
|
|
|
} |
|
|
|
createJSAPIOrder(datas).then(res => { |
|
|
|
createJSAPIOrder(datas).then(res => { |
|
|
|
|
|
|
|
uni.hideLoading(); |
|
|
|
if (res.return_code == '000000') { |
|
|
|
if (res.return_code == '000000') { |
|
|
|
this.jsapiPay(res.return_data.outTradeNo); |
|
|
|
this.jsapiPay(res.return_data.outTradeNo); |
|
|
|
} else { |
|
|
|
} else { |
|
|
@ -714,12 +719,12 @@ |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
if (res.return_data.payParam && app.globalData.platformType == 'ALIPAY') { |
|
|
|
if (res.return_data.payParam && app.globalData.platformType == 'ALIPAY') { |
|
|
|
this.alipayRequest(res.return_data.acc_resp_fields.paepay_id); |
|
|
|
this.alipayRequest(res.return_data.payParam.acc_resp_fields.prepay_id); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
if (res.return_data.payParam && app.globalData.platformType == 'UQRCODEPAY') { |
|
|
|
if (res.return_data.payParam && app.globalData.platformType == 'UQRCODEPAY') { |
|
|
|
// this.unionPayRequest(res.return_data); |
|
|
|
// this.unionPayRequest(res.return_data); |
|
|
|
window.location.href = res.return_data.acc_resp_fields.redirect_url; |
|
|
|
location.href = res.return_data.payParam.acc_resp_fields.redirect_url; |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
uni.showToast({ |
|
|
|
uni.showToast({ |
|
|
@ -793,11 +798,11 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
//第一位输入小数点时 |
|
|
|
//第一位输入小数点时 |
|
|
|
if (this.plateNumberList1[0] == '.') { |
|
|
|
if (this.plateNumberList1[0] == '.') { |
|
|
|
uni.showToast({ |
|
|
|
// uni.showToast({ |
|
|
|
title: '请输入正确的金额', |
|
|
|
// title: '请输入正确的金额', |
|
|
|
duration: 2000, |
|
|
|
// duration: 2000, |
|
|
|
icon: 'none' |
|
|
|
// icon: 'none' |
|
|
|
}) |
|
|
|
// }) |
|
|
|
this.plateNumberList1.pop(); |
|
|
|
this.plateNumberList1.pop(); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
@ -810,21 +815,21 @@ |
|
|
|
// } |
|
|
|
// } |
|
|
|
//如果已经有小数点 并且输入的是小数点 |
|
|
|
//如果已经有小数点 并且输入的是小数点 |
|
|
|
if (strdata1.length == 3 && !strdata2) { |
|
|
|
if (strdata1.length == 3 && !strdata2) { |
|
|
|
uni.showToast({ |
|
|
|
// uni.showToast({ |
|
|
|
title: '请输入正确的金额', |
|
|
|
// title: '请输入正确的金额', |
|
|
|
duration: 2000, |
|
|
|
// duration: 2000, |
|
|
|
icon: 'none' |
|
|
|
// icon: 'none' |
|
|
|
}) |
|
|
|
// }) |
|
|
|
this.plateNumberList1.pop(); |
|
|
|
this.plateNumberList1.pop(); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
//校验小数点后两 |
|
|
|
//校验小数点后两 |
|
|
|
if (this.plateNumberList.indexOf('.') != -1 && !strdata2) { |
|
|
|
if (this.plateNumberList.indexOf('.') != -1 && !strdata2) { |
|
|
|
uni.showToast({ |
|
|
|
// uni.showToast({ |
|
|
|
title: '请输入正确的金额', |
|
|
|
// title: '请输入正确的金额', |
|
|
|
duration: 2000, |
|
|
|
// duration: 2000, |
|
|
|
icon: 'none' |
|
|
|
// icon: 'none' |
|
|
|
}) |
|
|
|
// }) |
|
|
|
this.plateNumberList1.pop(); |
|
|
|
this.plateNumberList1.pop(); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
@ -848,11 +853,11 @@ |
|
|
|
}) |
|
|
|
}) |
|
|
|
if (self.platformType == 1) { |
|
|
|
if (self.platformType == 1) { |
|
|
|
jweixin.config({ |
|
|
|
jweixin.config({ |
|
|
|
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 |
|
|
|
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 |
|
|
|
appId: self.acc_resp_fields.app_id, // 必填,公众号的唯一标识 |
|
|
|
appId: self.payParam.acc_resp_fields.app_id, // 必填,公众号的唯一标识 |
|
|
|
timestamp: self.acc_resp_fields.time_stamp, // 必填,生成签名的时间戳 |
|
|
|
timestamp: self.payParam.acc_resp_fields.time_stamp, // 必填,生成签名的时间戳 |
|
|
|
nonceStr: self.acc_resp_fields.nonce_str, // 必填,生成签名的随机串 |
|
|
|
nonceStr: self.payParam.acc_resp_fields.nonce_str, // 必填,生成签名的随机串 |
|
|
|
signature: self.acc_resp_fields.pay_sign, // 必填,签名,见附录1 |
|
|
|
signature: self.payParam.acc_resp_fields.pay_sign, // 必填,签名,见附录1 |
|
|
|
jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 |
|
|
|
jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 |
|
|
|
}); |
|
|
|
}); |
|
|
|
uni.hideLoading(); |
|
|
|
uni.hideLoading(); |
|
|
@ -863,14 +868,15 @@ |
|
|
|
fail: function(res) {} |
|
|
|
fail: function(res) {} |
|
|
|
}); |
|
|
|
}); |
|
|
|
jweixin.chooseWXPay({ |
|
|
|
jweixin.chooseWXPay({ |
|
|
|
appId: self.acc_resp_fields.app_id, |
|
|
|
appId: self.payParam.acc_resp_fields.app_id, |
|
|
|
timestamp: self.acc_resp_fields |
|
|
|
timestamp: self.payParam.acc_resp_fields |
|
|
|
.time_stamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符 |
|
|
|
.time_stamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符 |
|
|
|
nonceStr: self.acc_resp_fields.nonce_str, // 支付签名随机串,不长于 32 位 |
|
|
|
nonceStr: self.payParam.acc_resp_fields.nonce_str, // 支付签名随机串,不长于 32 位 |
|
|
|
package: self.acc_resp_fields |
|
|
|
package: self.payParam.acc_resp_fields |
|
|
|
.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***) |
|
|
|
.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***) |
|
|
|
signType: self.acc_resp_fields.sign_type, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5' |
|
|
|
signType: self.payParam.acc_resp_fields |
|
|
|
paySign: self.acc_resp_fields.pay_sign, // 支付签名 |
|
|
|
.sign_type, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5' |
|
|
|
|
|
|
|
paySign: self.payParam.acc_resp_fields.pay_sign, // 支付签名 |
|
|
|
success: function(res) { |
|
|
|
success: function(res) { |
|
|
|
// 支付成功后的回调函数 |
|
|
|
// 支付成功后的回调函数 |
|
|
|
uni.showToast({ |
|
|
|
uni.showToast({ |
|
|
@ -891,10 +897,10 @@ |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
jweixin.config({ |
|
|
|
jweixin.config({ |
|
|
|
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 |
|
|
|
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 |
|
|
|
appId: self.appId, // 必填,公众号的唯一标识 |
|
|
|
appId: self.payParam.appId, // 必填,公众号的唯一标识 |
|
|
|
timestamp: self.timeStamp, // 必填,生成签名的时间戳 |
|
|
|
timestamp: self.payParam.timeStamp, // 必填,生成签名的时间戳 |
|
|
|
nonceStr: self.nonceStr, // 必填,生成签名的随机串 |
|
|
|
nonceStr: self.payParam.nonceStr, // 必填,生成签名的随机串 |
|
|
|
signature: self.sign, // 必填,签名,见附录1 |
|
|
|
signature: self.payParam.sign, // 必填,签名,见附录1 |
|
|
|
jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 |
|
|
|
jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 |
|
|
|
}); |
|
|
|
}); |
|
|
|
uni.hideLoading(); |
|
|
|
uni.hideLoading(); |
|
|
@ -933,40 +939,13 @@ |
|
|
|
}, |
|
|
|
}, |
|
|
|
//支付宝支付 |
|
|
|
//支付宝支付 |
|
|
|
alipayRequest(item) { |
|
|
|
alipayRequest(item) { |
|
|
|
//订单对象,从服务器获取 // 注意 如果是 支付宝支付provider固定值就是alipay |
|
|
|
alipayApi.tradePay({ |
|
|
|
uni.requestPayment({ //拿到订单信息后 调用 uniapp的支付接口 唤起支付 |
|
|
|
tradeNO: item |
|
|
|
provider: 'alipay', //微信就是 wxpay |
|
|
|
}, function(res) { |
|
|
|
orderInfo: item, //支付宝订单数据 从后端拿到的数据 |
|
|
|
// alert(JSON.stringify(res)); |
|
|
|
success: function(res) { |
|
|
|
//支付完成的逻辑 |
|
|
|
this.show1 = false |
|
|
|
|
|
|
|
uni.showToast({ |
|
|
|
|
|
|
|
title: "支付成功", |
|
|
|
|
|
|
|
icon: 'success', |
|
|
|
|
|
|
|
duration: 2000 |
|
|
|
|
|
|
|
// success: () => { |
|
|
|
|
|
|
|
// setTimeout(() => { |
|
|
|
|
|
|
|
// uni.switchTab({ |
|
|
|
|
|
|
|
// url: '/pages/index/index' |
|
|
|
|
|
|
|
// }) |
|
|
|
|
|
|
|
// }, 500) |
|
|
|
|
|
|
|
// } |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
fail: function(err) { |
|
|
|
|
|
|
|
uni.showToast({ |
|
|
|
|
|
|
|
title: "支付失败请稍后再试", |
|
|
|
|
|
|
|
icon: 'none', |
|
|
|
|
|
|
|
duration: 2000 |
|
|
|
|
|
|
|
// success: () => { |
|
|
|
|
|
|
|
// setTimeout(() => { |
|
|
|
|
|
|
|
// uni.switchTab({ |
|
|
|
|
|
|
|
// url: '/pages/my/my' |
|
|
|
|
|
|
|
// }) |
|
|
|
|
|
|
|
// }, 500) |
|
|
|
|
|
|
|
// } |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
@ -975,6 +954,10 @@ |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss"> |
|
|
|
<style lang="scss"> |
|
|
|
|
|
|
|
page { |
|
|
|
|
|
|
|
background-color: #ffffff; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.form { |
|
|
|
.form { |
|
|
|
width: 100%; |
|
|
|
width: 100%; |
|
|
|
border-radius: 8px; |
|
|
|
border-radius: 8px; |
|
|
|