作者 郭鑫
1 个管道 的构建 通过 耗费 1 秒

页面修改

... ... @@ -170,7 +170,47 @@ function common(id) {
url = url[0] + '/id/' + id + ".html";
window.location.href = url;
}
wx.config({
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: "{$config.appId}", // 必填,公众号的唯一标识
timestamp: "{$config.timestamp}", // 必填,生成签名的时间戳
nonceStr: "{$config.nonceStr}", // 必填,生成签名的随机串
signature: "{$config.signature}",// 必填,签名
jsApiList: [
'chooseWXPay'
] // 必填,需要使用的JS接口列表
});
// 支付
function toPay(id){
$.ajax({
type: 'POST',
url: "{:url('Member/toPay')}",
data: {
'id': id,
},
success: function (res) {
wx.chooseWXPay({
timestamp: res.data.timeStamp , // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
nonceStr: res.data.nonceStr, // 支付签名随机串,不长于 32 位
package: res.data.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
signType: res.data.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
paySign: res.data.paySign, // 支付签名
success: function (res) {
location.reload();
// window.location.href = "{:url('User/myOrder')}"
// 支付成功后的回调函数
},
error:function () {
alert('3333')
}
});
console.log(res);
},
error: function (res) {
console.log(res);
}
});
}
</script>
</body>
... ...
... ... @@ -193,6 +193,48 @@
window.location.href = url;
})
wx.config({
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: "{$config.appId}", // 必填,公众号的唯一标识
timestamp: "{$config.timestamp}", // 必填,生成签名的时间戳
nonceStr: "{$config.nonceStr}", // 必填,生成签名的随机串
signature: "{$config.signature}",// 必填,签名
jsApiList: [
'chooseWXPay'
] // 必填,需要使用的JS接口列表
});
// 支付
$('.toPay').click(function toPay(){
$.ajax({
type: 'POST',
url: "{:url('Member/toPay')}",
data: {
'id': id,
},
success: function (res) {
wx.chooseWXPay({
timestamp: res.data.timeStamp , // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
nonceStr: res.data.nonceStr, // 支付签名随机串,不长于 32 位
package: res.data.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
signType: res.data.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
paySign: res.data.paySign, // 支付签名
success: function (res) {
location.reload();
// window.location.href = "{:url('User/myOrder')}"
// 支付成功后的回调函数
},
error:function () {
alert('3333')
}
});
console.log(res);
},
error: function (res) {
console.log(res);
}
});
})
</script>
</body>
</html>
... ...