update
This commit is contained in:
@@ -1,10 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>微信支付</title>
|
||||
<style>
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.background {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
filter: blur(1px);
|
||||
z-index: -1;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>支付页面</h1>
|
||||
<div class="background" style="background-image: url('/static/field-gf7775feec_640.jpg')">
|
||||
</div>
|
||||
<script type="text/javascript" src="/layer/layer.js"></script>
|
||||
<script>
|
||||
function onBridgeReady() {
|
||||
if (typeof WeixinJSBridge === 'undefined') {
|
||||
alert('请在微信在打开页面!');
|
||||
return false;
|
||||
}
|
||||
WeixinJSBridge.invoke(
|
||||
'getBrandWCPayRequest',
|
||||
{$jssdk},
|
||||
function (res) {
|
||||
if (res.err_msg == "get_brand_wcpay_request:ok") {
|
||||
setTimeout(function () {
|
||||
layer.open({
|
||||
content: '支付成功'
|
||||
, shadeClose: false
|
||||
, btn: ['3秒后自动返回']
|
||||
, time: 3
|
||||
, end: function () {
|
||||
window.history.back()
|
||||
}
|
||||
});
|
||||
}, 1000);
|
||||
} else {
|
||||
layer.open({
|
||||
content: '支付过程出现问题'
|
||||
, shadeClose: false
|
||||
, btn: ['3秒后自动返回']
|
||||
, time: 3
|
||||
, end: function () {
|
||||
window.history.back()
|
||||
}
|
||||
});
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
if (typeof WeixinJSBridge == "undefined") {
|
||||
if (document.addEventListener) {
|
||||
document.addEventListener('WeixinJSBridgeReady', onBridgeReady, false);
|
||||
} else if (document.attachEvent) {
|
||||
document.attachEvent('WeixinJSBridgeReady', onBridgeReady);
|
||||
document.attachEvent('onWeixinJSBridgeReady', onBridgeReady);
|
||||
}
|
||||
} else {
|
||||
onBridgeReady();
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user