Showing
4 changed files
with
121 additions
and
4 deletions
@@ -70,10 +70,117 @@ | @@ -70,10 +70,117 @@ | ||
70 | ... | 70 | ... |
71 | ] | 71 | ] |
72 | } | 72 | } |
73 | + }, | ||
74 | + { | ||
75 | + //单品 HOT | ||
76 | + singlehot:{ | ||
77 | + name:'单品 HOT', //楼层标题 | ||
78 | + imgHot:[//有图片及logo的品牌 | ||
79 | + { | ||
80 | + 'href': '', | ||
81 | + 'img': '' | ||
82 | + }, | ||
83 | + ... | ||
84 | + ] | ||
85 | + } | ||
86 | + }, | ||
87 | + { | ||
88 | + //广告 | ||
89 | + adbanner:{ | ||
90 | + 'href':'', | ||
91 | + 'img':'' | ||
92 | + } | ||
93 | + }, | ||
94 | + { | ||
95 | + //潮人适配等楼层 | ||
96 | + recommend:{ | ||
97 | + name:'潮人配饰 ORNAMENT', | ||
98 | + navs:[ | ||
99 | + { | ||
100 | + 'id':'', | ||
101 | + 'href':'', | ||
102 | + 'name':'MORE' | ||
103 | + } | ||
104 | + ], | ||
105 | + tplrecommend:{ | ||
106 | + //左上角两张图片 | ||
107 | + keyword:[ | ||
108 | + { | ||
109 | + name:'', | ||
110 | + img:'', | ||
111 | + url:'' | ||
112 | + }, | ||
113 | + ... | ||
114 | + ], | ||
115 | + //左下角类别文案 | ||
116 | + category:[ | ||
117 | + { | ||
118 | + name:'', | ||
119 | + url:'' | ||
120 | + }, | ||
121 | + ... | ||
122 | + ], | ||
123 | + //中间两张图片 | ||
124 | + brands:[ | ||
125 | + { | ||
126 | + name:'', | ||
127 | + img:'', | ||
128 | + url:'' | ||
129 | + }, | ||
130 | + ... | ||
131 | + ], | ||
132 | + //右边六张图片 | ||
133 | + types:[ | ||
134 | + { | ||
135 | + name:'', | ||
136 | + img:'', | ||
137 | + url:'' | ||
138 | + }, | ||
139 | + ... | ||
140 | + ], | ||
141 | + //下面五张图片 | ||
142 | + products:[ | ||
143 | + { | ||
144 | + name:'', | ||
145 | + img:'', | ||
146 | + url:'' | ||
147 | + }, | ||
148 | + ... | ||
149 | + ] | ||
150 | + } | ||
151 | + } | ||
152 | + }, | ||
153 | + { | ||
154 | + //最新上架 | ||
155 | + newArrivls:{ | ||
156 | + name:'最新上架 NEW ARRIVALS', | ||
157 | + navs:[ | ||
158 | + { | ||
159 | + 'id':'', | ||
160 | + 'href':'', | ||
161 | + 'name':'MORE' | ||
162 | + } | ||
163 | + ] | ||
164 | + } | ||
73 | } | 165 | } |
74 | ] | 166 | ] |
75 | } | 167 | } |
76 | 168 | ||
169 | +## 男首新品上架 ajax数据 | ||
170 | + { | ||
171 | + code:200, //返回状态 | ||
172 | + commodity:[ | ||
173 | + { | ||
174 | + 'url':'', | ||
175 | + 'img':'', | ||
176 | + 'name':'', | ||
177 | + 'price':'', | ||
178 | + 'state':'' //表示商品某种状态,用于显示商品左上角,比如已将售清等 | ||
179 | + }, | ||
180 | + ... | ||
181 | + ] | ||
182 | + } | ||
183 | + | ||
77 | ## 男首优选品牌,logo品牌,ajax数据 | 184 | ## 男首优选品牌,logo品牌,ajax数据 |
78 | { | 185 | { |
79 | logoBrand: [ | 186 | logoBrand: [ |
@@ -327,6 +327,11 @@ | @@ -327,6 +327,11 @@ | ||
327 | } | 327 | } |
328 | } | 328 | } |
329 | .tpl-products{ | 329 | .tpl-products{ |
330 | + | ||
331 | + width: 100%; | ||
332 | + height: 298px; | ||
333 | + overflow: hidden; | ||
334 | + | ||
330 | ul{margin-left:-10px; | 335 | ul{margin-left:-10px; |
331 | li{ | 336 | li{ |
332 | float: left; | 337 | float: left; |
@@ -390,7 +395,12 @@ | @@ -390,7 +395,12 @@ | ||
390 | } | 395 | } |
391 | 396 | ||
392 | .singlehot{ | 397 | .singlehot{ |
393 | - margin-left:-8px; | 398 | + width: 100%; |
399 | + height: 584px; | ||
400 | + overflow: hidden; | ||
401 | + ul{ | ||
402 | + margin-left:-8px; | ||
403 | + } | ||
394 | li{ | 404 | li{ |
395 | float: left; | 405 | float: left; |
396 | margin-left:8px; | 406 | margin-left:8px; |
@@ -460,9 +460,9 @@ class BoysController extends AbstractAction | @@ -460,9 +460,9 @@ class BoysController extends AbstractAction | ||
460 | ) | 460 | ) |
461 | ) | 461 | ) |
462 | ), | 462 | ), |
463 | - array('adbanner'=>array('href' => '','img'=>'' )), | 463 | + array('adbanner'=>array('href' => '','img'=>'' )),//楼层广告 |
464 | array( | 464 | array( |
465 | - 'recommend'=>$tpldata | 465 | + 'recommend'=>$tpldata//潮人适配 |
466 | ), | 466 | ), |
467 | array( | 467 | array( |
468 | 'recommend'=>$tpldata | 468 | 'recommend'=>$tpldata |
-
Please register or login to post a comment