|
@@ -0,0 +1,69 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
+ <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
|
+ <title>支付结果</title>
|
|
|
+ <script type="text/javascript" charset="UTF-8"
|
|
|
+src="https://wx.gtimg.com/pay_h5/goldplan/js/jgoldplan-1.0.0.js"></script>
|
|
|
+ <style>
|
|
|
+ body {
|
|
|
+ background-color: #efeff4;
|
|
|
+ }
|
|
|
+ * {
|
|
|
+ padding: 0;
|
|
|
+ margin: 0;
|
|
|
+ }
|
|
|
+ .app {
|
|
|
+ width: 100%;
|
|
|
+ height: 100vh;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ .app img {
|
|
|
+ width: 73px;
|
|
|
+ display: block;
|
|
|
+
|
|
|
+ }
|
|
|
+ .app span {
|
|
|
+ font-size: 11px;
|
|
|
+ text-align: center;
|
|
|
+ margin: 21px 42px 41px;
|
|
|
+ line-height: 21px;
|
|
|
+ }
|
|
|
+ .button {
|
|
|
+ background-color: #00AE75;
|
|
|
+ border-radius: 13px;
|
|
|
+ font-size: 13px;
|
|
|
+ line-height: 27px;
|
|
|
+ color: #FFFFFF;
|
|
|
+ padding: 0 12px;
|
|
|
+ text-align: center;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <div class="app">
|
|
|
+ <img src="./icon-success.68ddda96.png" alt="" />
|
|
|
+ <span>您的签署信息已经提交完成,请耐心等待,我们将在三个工作日内审核完成,如遇节假日自动顺延至节后,非常感谢。</span>
|
|
|
+ <a class="button">返回代理商系统</a>
|
|
|
+ </div>
|
|
|
+</body>
|
|
|
+<script type="text/javascript">
|
|
|
+ window.onload = function () {
|
|
|
+ var mchData = {action: 'onIframeReady', displayStyle: 'SHOW_CUSTOM_PAGE'}
|
|
|
+ var postData = JSON.stringify(mchData)
|
|
|
+ parent.postMessage(postData, 'https://payapp.weixin.qq.com')
|
|
|
+ }
|
|
|
+
|
|
|
+ function jumpOut() {
|
|
|
+ var mchData = {action: 'jumpOut', jumpOutUrl: "http://daili.uat.churenyiliao.com/"}
|
|
|
+ var postData = JSON.stringify(mchData)
|
|
|
+ parent.postMessage(postData, 'https://payapp.weixin.qq.com')
|
|
|
+ }
|
|
|
+</script>
|
|
|
+</html>
|