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
| <!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" />
| <link rel="stylesheet" type="text/css" href="./css/styleresult.css" />
| <script>
| window.onresize = function() {
| document.documentElement.style.fontSize = document.documentElement.clientWidth / 7.5 + 'px';
| };
| window.onresize();
| </script>
| </head>
|
| <body>
| <div id="root">
| <div class="div_top"></div>
| <img src="img/icon_logo.png">
| <div class="hedaer_title" style="left: 1.6rem;">
| 账户已成功注销!
| </div>
| </div>
| </body>
|
| <script>
| $(function() {
| // yesApp.finishPage();
| });
| </script>
|
| </html>
|
|