-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
42 lines (37 loc) · 1.22 KB
/
help.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="format-detection" content="telephone=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>用户帮助</title>
<link rel="stylesheet" href="css/sta.css">
<link href="css/mui.min.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/mui.min.js"></script>
<script type="text/javascript" src="js/common.js"></script>
<script type="text/javascript" src="js/config.js"></script>
</head>
<body style="background:#fff;">
<div class="index_box" style="margin-top:60px">
<div class="nearby_top">
<h1>用户帮助</h1>
<a class="index_back mui-action-back"><img src="img/back.png" alt="" width="100%" height="100%"></a>
</div>
<div style="margin_20px;background:#fff;text-align: center;" id="content">
</div>
</div>
<script>
getJson(
'api/userhelp',
null,
function (ret) {
mui('#content')[0].innerHTML = ret.data;
},
null,
false
)
</script>
</body>
</html>