...
|
...
|
@@ -14,6 +14,7 @@ |
|
|
<link rel="stylesheet" href="__TMPL__/static/css/paybalance.css" />
|
|
|
<link rel="stylesheet" href="__TMPL__/static/css/common.css"/>
|
|
|
<link rel="stylesheet" href="__TMPL__/static/css/payed.css" />
|
|
|
<script src="http://res2.wx.qq.com/open/js/jweixin-1.4.0.js"></script>
|
|
|
<style type="text/css">
|
|
|
.bot_reason {
|
|
|
display: none;
|
...
|
...
|
@@ -300,7 +301,16 @@ |
|
|
|
|
|
success: function (data) {
|
|
|
if(data.code == 20000) {
|
|
|
window.location.reload();
|
|
|
wx.chooseWXPay({
|
|
|
timestamp: data.data.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
|
|
|
nonceStr: data.data.nonceStr, // 支付签名随机串,不长于 32 位
|
|
|
package: data.data.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
|
|
|
signType: data.data.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
|
|
|
paySign: data.data.paySign, // 支付签名
|
|
|
success: function (res) {
|
|
|
// 支付成功后的回调函数
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
})
|
...
|
...
|
@@ -328,4 +338,18 @@ |
|
|
return false;
|
|
|
}
|
|
|
})
|
|
|
</script>
|
|
|
|
|
|
<script>
|
|
|
wx.config({
|
|
|
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
|
|
|
appId: '{$js_sdk.appId}', // 必填,公众号的唯一标识
|
|
|
timestamp: '{$js_sdk.timestamp}', // 必填,生成签名的时间戳
|
|
|
nonceStr: '{$js_sdk.nonceStr}', // 必填,生成签名的随机串
|
|
|
signature: '{$js_sdk.signature}',// 必填,签名
|
|
|
jsApiList: [
|
|
|
'chooseWXPay'
|
|
|
] // 必填,需要使用的JS接口列表
|
|
|
});
|
|
|
|
|
|
</script> |
|
|
\ No newline at end of file |
...
|
...
|
|