23 lines
566 B
HTML
23 lines
566 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>公众号授权</title>
|
|
<script src="http://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
|
|
</head>
|
|
<body>
|
|
<div style="text-align: center; font-size: 16px; padding-top: 120px">
|
|
绑定成功!
|
|
</div>
|
|
<script>
|
|
function back() {
|
|
wx.miniProgram.redirectTo({
|
|
url: "/pageQuota/quotation/detail",
|
|
});
|
|
}
|
|
back();
|
|
</script>
|
|
</body>
|
|
</html>
|