Error.tpl
1 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
<include file="Common@Frontend/Header" />
<head>
<style type="text/css">
body {
background-color: #f0eff5;
}
.error-page {
margin-top: 2.35rem;
text-align: center;
}
.error-page img {
width: 3.11rem;
height: 2.53rem;
}
.error-page span {
display: block;
font-size: 0.24rem;
color: #555555;
}
.display-no {
display: none;
}
</style>
<script>
var doc = document.documentElement;
var deviceWidth = doc.clientWidth > 640 ? 640 : doc.clientWidth;
doc.style.fontSize = deviceWidth / 6.4 + 'px';
</script>
</head>
<body>
<div class="error-page">
<img src="/static/img/frontendError.png">
<span>网络正忙,请稍后再试</span>
<div class="display-no">
errorCode:{$error_code};
errorMsg:{$error_msg}
</div>
</div>
</body>
<include file="Common@Frontend/Footer" />