admin
2021-12-09 f609ca35ee2946acd0ff04b7ac1aa61f75a2e4a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
 
<head>
    <meta charset="utf-8">
    <title>支付完成</title>
    <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
    <script src="js/base.js"></script>
    <link href="css/base.css" rel="stylesheet" />
    <style>
        body {
            background: #FFFFFF;
        }
    </style>
</head>
 
<body>
    <div style="position: fixed;width: 100%;height: 100%;background: rgba(1,1,1,0.5);top: 0;left: 0;z-index: 999;">
        <div class="dialog" style="position: absolute;margin:auto;left: 0;right: 0;top:0;bottom: 0; max-height: 3rem;width:5.6rem;">
            <img src="img/icon_close.png" style="height:0.5rem;right: 0.2rem;top:0.2rem;position: absolute;display: none;" v-on:click="hiddenDialog()">
            <div class="title" style="color: #0E96FF;">是否支付完成</div>
            <div class="content" style="font-size: 0.3rem;text-align: center;color: #333333;padding: 0.2rem 0;font-weight: 400;">
                请确认支付是否完成
            </div>
            <div style="display: flex; justify-content: space-between;">
                <div class="btn-default" style="margin: 0 auto;margin-top: 0.4rem;width: 2.3rem;background: #FFFFFF;color: #0E96FF; border:solid 1px #0E96FF" onclick="repay()">重新下单</div>
                <div class="btn-default" style="margin: 0 auto;margin-top: 0.4rem;width: 2.3rem;background: #0E96FF;" onclick="order()">支付成功</div>
            </div>
        </div>
    </div>
 
    <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
    <script src="../js/app.js"></script>
</body>
 
<script type="text/javascript">
    var id = getQueryString("id");
 
    function order() {
        window.location.replace("pay_success.html?id=" + id);
    }
 
    function repay() {
        ksbridge.call("finishPage");
    }
</script>
 
</html>