gaobaoming
2018-10-31 d95781695bf820f2ec828ed4fcc01ca811b6d4f1
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
<!doctype html>
<html>
 
<head>
    <meta charset="utf-8">
    <title></title>
    <base href="/">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <link rel="icon" type="image/x-icon" href="favicon.ico">
    <style>
        .modal-open {
            overflow: auto !important;
            padding: 0 !important;
        }
    </style>
    <script language="javascript">
 
        if (window.top != window.self) {
            window.top.location.href = window.self.location.href;
        }
        // window.onbeforeunload = function closeWindow(e) {
        //     if (!READYTOPROCESS) {
        //         document.cookie="token="+"";
        //     }
        // };
    </script>
</head>
 
<body style="overflow: auto !important;">
    <app-root></app-root>
    <div class="preloader">
        <div class="preloader-progress">
            <div class="preloader-progress-bar"></div>
        </div>
    </div>
</body>
 
</html>