index6.html
1.96 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>优惠券 | 功能介绍 - 美得得.手店</title>
<include file="public/topmeta"/>
<link rel="stylesheet" type="text/css" href="__STATIC__/css/base.css" media="screen"/>
<link rel="stylesheet" type="text/css" href="__STATIC__/css/introduce.css" media="screen"/>
<script type="text/javascript" src="__STATIC__/js/jquery-1.10.2.min.js"></script>
<link href="__PUBLIC__/static/css/page.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="__PUBLIC__/static/js/layer/layer.js"></script>
</head>
<body>
<include file="public/header"/>
<div class="banner" style="background-image: url('https://mshopimg.yolipai.net/public/pcimg//introduce/6.jpg')">
<div class="banner_content" >
<Div style="">
<h1 style="width: 100px;">优惠券</h1>
<p>优惠券是常见的刺激消费的营销工具,<br>
培养用户先领券再购物的消费习惯,<br>
精准触达用户,增加客户粘性</p>
</Div>
</div>
</div>
<div class="typelist">
<div class="type_content">
<div class="type_title">功能介绍</div>
<ul class="type_list">
<foreach name="typelist" item="vo" key="k" >
<li id="{$vo.id}" <if condition="$gettypeid eq $vo.id">class="active"</if>>{$vo.title}</li>
</foreach>
</ul>
</div>
</div>
<Div class="clear"></Div>
<div class="bg1">
<div class="introducebg1">
<h3>获取优惠券</h3>
<img src="https://mshopimg.yolipai.net/public/pcimg//introduce/index6_1.jpg">
</div>
</div>
<div class="bg3">
<div class="introducebg1">
<h3>优惠券使用</h3>
<img src="https://mshopimg.yolipai.net/public/pcimg//introduce/index6_2.jpg">
</div>
</div>
<include file="public/footer"/>
</body>
</html>
<script>
$(".type_list li").click(function () {
location.href="/home/introduce/index"+$(this).attr("id");
})
</script>