help.html
2.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>帮助中心</title>
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
<link rel="stylesheet" type="text/css" href="css/mui.min.css" />
<link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_537174_a4y4ri5v8z6t7qfr.css"/>
<link rel="stylesheet" type="text/css" href="css/swiper.min.css"/>
<link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_550254_r6pua542e96vquxr.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="css/base.css" />
<script src="js/base.js"></script>
</head>
<body>
<div class="container help_container bottom_content">
<div class="top_note">商家信息</div>
<!--信息列表-->
<ul class="ask_items">
<li class="ask_item mui-icon ">
1、如何进行前期信息录入?
</li>
<li class="ask_item mui-icon ">
2、保质期是多久?
</li>
<li class="ask_item mui-icon ">
3、如何保修?
</li>
</ul>
<!--top-->
<div class="other_box">
<div class="other_top">
没有我想要的答案?快速上报:
</div>
<textarea class="other_input" placeholder="请填写需要反馈的信息"></textarea>
<button class="mui-btn sub_ask">提交</button>
</div>
<div class="ask_now">
<a href="tel:03133111">一键咨询</a>
</div>
<!--二维码-->
<div class="kefu_box">
<div class="kefu_img">
<img src="img/496209113447487981.png" width="100%" />
</div>
<span>微信客服</span>
</div>
</div>
<!--底部-->
<div class="nav_bottom">
<a class="nav_bottom_item" href="brandIntroduce.html">
<span class="iconfont icon-pinpai"></span>
<span class="bottom_title">品牌介绍</span>
</a>
<a class="nav_bottom_item active" href="help.html">
<span class="iconfont icon-gaiicon-"></span>
<span class="bottom_title">帮助中心</span>
</a>
<a class="nav_bottom_item" href="myBaodan.html">
<span class="iconfont icon-wode"></span>
<span class="bottom_title">个人中心</span>
</a>
</div>
<script type="text/javascript" src="js/jquery-2.1.0.js"></script>
<script type="text/javascript" src="js/mui.min.js"></script>
<script type="text/javascript" src="js/swiper.min.js" ></script>
<script>
//协议勾选
mui('.other_box').on('tap','.sub_ask',function(){
if($('.other_input').val()==''){
mui.toast('反馈信息不能为空!');
return false;
}
})
</script>
</body>
</html>