|
|
1
|
+{{> layout/header}}
|
|
|
2
|
+<div class="discount-page yoho-page">
|
|
|
3
|
+ {{# headerBanner}}
|
|
|
4
|
+ {{> product/banner_swipe_and_single}}
|
|
|
5
|
+ {{/ headerBanner}}
|
|
|
6
|
+
|
|
|
7
|
+ <ul id="list-nav" class="list-nav clearfix">
|
|
|
8
|
+ <li class="new active">
|
|
|
9
|
+ <a href="javascript:void(0);">
|
|
|
10
|
+ <span class="spanTest">最新</span>
|
|
|
11
|
+ <span class="iconfont cur"></span>
|
|
|
12
|
+ </a>
|
|
|
13
|
+ </li>
|
|
|
14
|
+ <li class="price">
|
|
|
15
|
+ <a href="javascript:void(0);">
|
|
|
16
|
+ <span class="spanTest">价格</span>
|
|
|
17
|
+ <span class="icon">
|
|
|
18
|
+ <i class="iconfont up"></i>
|
|
|
19
|
+ <i class="iconfont down cur"></i>
|
|
|
20
|
+ </span>
|
|
|
21
|
+ </a>
|
|
|
22
|
+ </li>
|
|
|
23
|
+ <li class="discount">
|
|
|
24
|
+ <a href="javascript:void(0);">
|
|
|
25
|
+ <span class="spanTest">折扣</span>
|
|
|
26
|
+ <span class="icon">
|
|
|
27
|
+ <i class="iconfont up"></i>
|
|
|
28
|
+ <i class="iconfont down cur"></i>
|
|
|
29
|
+ </span>
|
|
|
30
|
+ </a>
|
|
|
31
|
+ </li>
|
|
|
32
|
+ <li class="filter">
|
|
|
33
|
+ <a href="javascript:void(0);">
|
|
|
34
|
+ <span class="spanTest">筛选</span>
|
|
|
35
|
+ <span class="iconfont"></span>
|
|
|
36
|
+ </a>
|
|
|
37
|
+ </li>
|
|
|
38
|
+ </ul>
|
|
|
39
|
+
|
|
|
40
|
+ <div id="goods-container" class="goods-container">
|
|
|
41
|
+ <div class="new-goods container clearfix">
|
|
|
42
|
+ {{# goods}}
|
|
|
43
|
+ {{> good}}
|
|
|
44
|
+ {{/ goods}}
|
|
|
45
|
+ </div>
|
|
|
46
|
+ <div class="price-goods container hide clearfix"></div>
|
|
|
47
|
+ <div class="discount-goods container hide clearfix"></div>
|
|
|
48
|
+
|
|
|
49
|
+ {{> filter}}
|
|
|
50
|
+ </div>
|
|
|
51
|
+
|
|
|
52
|
+ {{#if brand}}
|
|
|
53
|
+ <input id="brand" type="hidden" value={{brand}}>
|
|
|
54
|
+ {{/if}}
|
|
|
55
|
+
|
|
|
56
|
+ {{#if gender}}
|
|
|
57
|
+ <input id="gender" type="hidden" value={{gender}}>
|
|
|
58
|
+ {{/if}}
|
|
|
59
|
+
|
|
|
60
|
+ {{#if sort}}
|
|
|
61
|
+ <input id="sort" type="hidden" value={{sort}}>
|
|
|
62
|
+ {{/if}}
|
|
|
63
|
+
|
|
|
64
|
+ {{#if msort}}
|
|
|
65
|
+ <input id="msort" type="hidden" value={{msort}}>
|
|
|
66
|
+ {{/if}}
|
|
|
67
|
+
|
|
|
68
|
+ {{#if misort}}
|
|
|
69
|
+ <input id="misort" type="hidden" value={{misort}}>
|
|
|
70
|
+ {{/if}}
|
|
|
71
|
+
|
|
|
72
|
+ {{#if color}}
|
|
|
73
|
+ <input id="color" type="hidden" value={{color}}>
|
|
|
74
|
+ {{/if}}
|
|
|
75
|
+
|
|
|
76
|
+ {{#if size}}
|
|
|
77
|
+ <input id="size" type="hidden" value={{size}}>
|
|
|
78
|
+ {{/if}}
|
|
|
79
|
+
|
|
|
80
|
+ {{#if price}}
|
|
|
81
|
+ <input id="price" type="hidden" value={{price}}>
|
|
|
82
|
+ {{/if}}
|
|
|
83
|
+
|
|
|
84
|
+ {{#if p_d}}
|
|
|
85
|
+ <input id="p_d" type="hidden" value={{p_d}}>
|
|
|
86
|
+ {{/if}}
|
|
|
87
|
+
|
|
|
88
|
+ {{#if channel}}
|
|
|
89
|
+ <input id="channel" type="hidden" value={{channel}}>
|
|
|
90
|
+ {{/if}}
|
|
|
91
|
+
|
|
|
92
|
+ {{#if limit}}
|
|
|
93
|
+ <input id="limit" type="hidden" value={{limit}}>
|
|
|
94
|
+ {{/if}}
|
|
|
95
|
+
|
|
|
96
|
+ {{#if page}}
|
|
|
97
|
+ <input id="page" type="hidden" value={{page}}>
|
|
|
98
|
+ {{/if}}
|
|
|
99
|
+
|
|
|
100
|
+ {{#if discount}}
|
|
|
101
|
+ <input id="discount" type="hidden" value={{discount}}>
|
|
|
102
|
+ {{/if}}
|
|
|
103
|
+
|
|
|
104
|
+ {{> product/suspend-cart}}
|
|
|
105
|
+</div>
|
|
|
106
|
+{{> layout/footer}} |