wrong.html
2.9 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
<script src="../../assets/js/fontsize.js"></script>
<link rel="stylesheet" href="../../assets/css/api.css"/>
<link rel="stylesheet" href="../../assets/css/index.css">
<link rel="stylesheet" href="../../assets/css/doc.css">
<link rel="stylesheet" href="../../assets/icon/iconfont.css">
<style>
.wrong_box {
position: fixed;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
flex-direction: column;
color: #424242;
}
.wrong_box img {
width: 20%;
}
.reload {
width: 30%;
padding: 0.25rem 0;
text-align: center;
margin: 0.3rem auto;
background-color: #D8B25F;
font-size: 14px;
color: #fff;
border-radius: 0.1rem;
}
.wrong {
padding: 0.2rem 0;
}
</style>
</head>
<body>
<div id="app" v-cloak>
<div class="wrong_box">
<img src="../../assets/image/loading.gif" alt="">
<span class="wrong">网络小短腿似乎跑不动了...</span>
<span @click="reLoad" class="reload">{{text}}</span>
</div>
</div>
</body>
</html>
<script type="text/javascript" src="../../assets/js/api.js"></script>
<script type="text/javascript" src="../../assets/js/public.js"></script>
<script type="text/javascript" src="../../assets/js/fastclick.js"></script>
<script>
new FastClick(document.body);
</script>
<script type="text/javascript" src="../../assets/js/vue.min.js"></script>
<script type="text/javascript" src="../../assets/js/axios.min.js"></script>
<script type="text/javascript" src="../../assets/icon/iconfont.js"></script>
<script>
var app = new Vue({
el: '#app',
data: {
text: '重新加载'
},
created: function () {
apiready = function () {
setTimeout(function() {
api.openWin({
name: 'index_win',
url: './index_win.html',
});
}, 3000)
}
},
methods: {
reLoad: function () {
app.text = '加载中...';
setTimeout(function() {
api.openWin({
name: 'index_win',
url: './index_win.html',
});
}, 2000)
}
}
})
</script>