-
Notifications
You must be signed in to change notification settings - Fork 0
/
conpons_item.html
91 lines (87 loc) · 2.77 KB
/
conpons_item.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/getconpon.css">
<link rel="stylesheet" href="./css/dialog.css">
<link rel="stylesheet" href="css/font-awesome.css">
<title>Document</title>
</head>
<body>
<div class="mask hide">
<ul class="mask_banner">
<li class="fa fa-angle-left prev"></li>
<li>
<ul class="">
<li class="conter">
<img src="./images/kfc.jpg" alt="">
</li>
</ul>
</li>
<li class="fa fa-angle-right next"></li>
</ul>
</div>
<header>
<a href="getconpon.html" class="back"></a>
<div class="tlt">
<h3>
<span>肯德基</span>优惠券</h3>
</div>
<a href="#" class="app">
<img src="./images/header_app.png" alt="">
</a>
</header>
<!-- <section class="tip">
<span>--点餐前出示手机中优惠券,即可享受优惠--</span>
</section> -->
<section class="content">
<!--<div class="item">
<div class="left">
<a href="#" class="mask">
<img src="./images/kfc.jpg" alt="">
</a>
</div>
<div class="right">
<div class="txt">
<a href="#">THERMOS 膳魔师 F4011-BLY-DRM 儿童保温杯 350ml*3+凑单品</a>
</div>
<span class="price">
<i>¥</i>25</span>
<span class="validity">
<a href="#">有效期至10月31日</a>
</span>
<span class="into"></span>
</div>
</div>
</div> -->
</section>
</body>
<script src="lib/zepto.min.js"></script>
<script src="lib/template-web.js"></script>
<script src="js/conpons.js"></script>
<script type="text/template" id="sss">
{{each data value}}
<div class="item">
<div class="left">
<a href="javascript:;" class="tcxc" id="{{value.couponProductId}}">
{{@value.couponProductImg}}
</a>
</div>
<div class="right">
<div class="txt">
<a href="#">{{value.couponProductName}}</a>
</div>
<span class="price">{{value.couponProductPrice}}</span>
<span class="validity">
<a href="#">
<span>{{value.couponProductTime}}</span>
</a>
</span>
<span class="into"></span>
</div>
</div>
{{/each}}
</script>
</html>