sale页面加入专区分类楼层。code review by XWG
Showing
4 changed files
with
87 additions
and
117 deletions
@@ -5,7 +5,7 @@ | @@ -5,7 +5,7 @@ | ||
5 | </div> | 5 | </div> |
6 | <ul class="sale-nav"> | 6 | <ul class="sale-nav"> |
7 | {{#navItem}} | 7 | {{#navItem}} |
8 | - <li class="{{#vip}}green{{/vip}} {{#incompleteSize}}yellow{{/incompleteSize}} {{#newDiscount}}red{{/newDiscount}} {{#if @first}}active first{{/if}} {{#if @last}}last{{/if}}">aa</li> | 8 | + <li class="{{#vip}}green{{/vip}} {{#incompleteSize}}yellow{{/incompleteSize}} {{#newDiscount}}red{{/newDiscount}} {{#if @first}}active first{{/if}} {{#if @last}}last{{/if}}" data-url='{{url}}'>aa</li> |
9 | {{/navItem}} | 9 | {{/navItem}} |
10 | </ul> | 10 | </ul> |
11 | <div class="commodity-list"> | 11 | <div class="commodity-list"> |
@@ -13,13 +13,14 @@ | @@ -13,13 +13,14 @@ | ||
13 | {{#each saleImage}} | 13 | {{#each saleImage}} |
14 | <li class="commodity-item"> | 14 | <li class="commodity-item"> |
15 | <a href="{{href}}" target= "_blank"><div class="commodity-img"> | 15 | <a href="{{href}}" target= "_blank"><div class="commodity-img"> |
16 | - {{# tip}} | ||
17 | - <i class="top">{{.}}</i> | ||
18 | - {{/ tip}} | ||
19 | <img class="lazy" data-original="{{img}}"/></div> | 16 | <img class="lazy" data-original="{{img}}"/></div> |
20 | - <div class="commodity-content"> | 17 | + <div class="commodity-content {{#if @last}}hide{{/if}}"> |
21 | <p class="commodity-name">{{name}}</p> | 18 | <p class="commodity-name">{{name}}</p> |
22 | - <p class="commodity-price"><span>¥{{price}}</span></p> | 19 | + <p class="commodity-price"> |
20 | + <span class="origin">¥{{originPrice}}</span> | ||
21 | + <span>¥{{price}}</span> | ||
22 | + {{#vip}}<span class="vip-tag">VIP</span><strong>更优惠</strong>{{/vip}} | ||
23 | + </p> | ||
23 | </div> | 24 | </div> |
24 | </a> | 25 | </a> |
25 | </li> | 26 | </li> |
web-static/img/sale/vip.png
0 → 100644

1003 Bytes
@@ -219,63 +219,6 @@ | @@ -219,63 +219,6 @@ | ||
219 | width: 241px; | 219 | width: 241px; |
220 | margin: 0 10px 0 0 | 220 | margin: 0 10px 0 0 |
221 | } | 221 | } |
222 | - | ||
223 | - .commodity-tag { | ||
224 | - height: 20px | ||
225 | - } | ||
226 | - | ||
227 | - .commodity-tag .good-tag { | ||
228 | - display: block; | ||
229 | - float: left; | ||
230 | - margin-right: 5px; | ||
231 | - height: 20px; | ||
232 | - font-size: 12px; | ||
233 | - text-align: center; | ||
234 | - line-height: 20px; | ||
235 | - box-sizing: border-box | ||
236 | - } | ||
237 | - | ||
238 | - .commodity-tag .good-tag:last-child { | ||
239 | - margin-right: 0 | ||
240 | - } | ||
241 | - | ||
242 | - .commodity-tag .new-tag { | ||
243 | - width: 43px; | ||
244 | - background-color: #78dc7e; | ||
245 | - color: #fff | ||
246 | - } | ||
247 | - | ||
248 | - .commodity-tag .renew-tag { | ||
249 | - width: 53px; | ||
250 | - background-color: #78dc7e; | ||
251 | - color: #fff | ||
252 | - } | ||
253 | - | ||
254 | - .commodity-tag .sale-tag { | ||
255 | - width: 43px; | ||
256 | - background-color: #ff575c; | ||
257 | - color: #fff | ||
258 | - } | ||
259 | - | ||
260 | - .commodity-tag .yohood-tag { | ||
261 | - width: 64px; | ||
262 | - background: url('../assets/images/yohood.png?1450667948') no-repeat; | ||
263 | - background-size: 100% 100% | ||
264 | - } | ||
265 | - | ||
266 | - .commodity-tag .limit-tag { | ||
267 | - width: 60px; | ||
268 | - line-height: 18px; | ||
269 | - border: 1px solid #000; | ||
270 | - color: #000 | ||
271 | - } | ||
272 | - | ||
273 | - .commodity-tag .yep-tag,.commodity-tag .ymp-tag { | ||
274 | - width: 64px; | ||
275 | - background-color: #ff575c; | ||
276 | - color: #fff | ||
277 | - } | ||
278 | - | ||
279 | .commodity-img { | 222 | .commodity-img { |
280 | position: relative; | 223 | position: relative; |
281 | height: 323px; | 224 | height: 323px; |
@@ -335,7 +278,29 @@ | @@ -335,7 +278,29 @@ | ||
335 | 278 | ||
336 | .commodity-content .commodity-price span { | 279 | .commodity-content .commodity-price span { |
337 | display: inline-block; | 280 | display: inline-block; |
338 | - font-size: 12px | 281 | + *display: inline; |
282 | + *zoom: 1; | ||
283 | + font-size: 12px; | ||
284 | + padding: 0 15px; | ||
285 | + } | ||
286 | + | ||
287 | + .commodity-content .commodity-price span.origin { | ||
288 | + text-decoration: line-through; | ||
289 | + } | ||
290 | + | ||
291 | + .commodity-content .commodity-price strong { | ||
292 | + font-weight: normal; | ||
293 | + color: #565656; | ||
294 | + font-size: 13px; | ||
295 | + } | ||
296 | + | ||
297 | + .commodity-content .commodity-price span.vip-tag { | ||
298 | + background-image: image-url('sale/vip.png'); | ||
299 | + background-repeat: no-repeat; | ||
300 | + background-size: 100% 90%; | ||
301 | + color: #fff; | ||
302 | + font-style: italic; | ||
303 | + margin-right: 5px; | ||
339 | } | 304 | } |
340 | 305 | ||
341 | .commodity-content .commodity-price .price-sale { | 306 | .commodity-content .commodity-price .price-sale { |
@@ -160,68 +160,81 @@ class Sale1Controller extends WebAction | @@ -160,68 +160,81 @@ class Sale1Controller extends WebAction | ||
160 | 'navItem' => array( | 160 | 'navItem' => array( |
161 | array( | 161 | array( |
162 | 'name' => '12', | 162 | 'name' => '12', |
163 | + 'url' => 'xxx' | ||
163 | ), | 164 | ), |
164 | array( | 165 | array( |
165 | 'name' => '12', | 166 | 'name' => '12', |
167 | + 'url' => 'xxx' | ||
166 | ), | 168 | ), |
167 | array( | 169 | array( |
168 | 'name' => '12', | 170 | 'name' => '12', |
171 | + 'url' => 'xxx' | ||
169 | ), | 172 | ), |
170 | array( | 173 | array( |
171 | 'name' => '12', | 174 | 'name' => '12', |
175 | + 'url' => 'xxx' | ||
172 | ), | 176 | ), |
173 | array( | 177 | array( |
174 | 'name' => '12', | 178 | 'name' => '12', |
179 | + 'url' => 'xxx' | ||
175 | ), | 180 | ), |
176 | ), | 181 | ), |
177 | 'saleImage'=> array( | 182 | 'saleImage'=> array( |
178 | array( | 183 | array( |
179 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 184 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
180 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 185 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
181 | - 'name' => 'test', | ||
182 | - 'price' => '888' | 186 | + 'name' => '短发上课就犯困啦圣诞节', |
187 | + 'price' => '888', | ||
188 | + 'originPrice' => '1000' | ||
183 | ), | 189 | ), |
184 | array( | 190 | array( |
185 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 191 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
186 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 192 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
187 | - 'name' => 'test', | ||
188 | - 'price' => '888' | 193 | + 'name' => '短发上课就犯困啦圣诞节', |
194 | + 'price' => '888', | ||
195 | + 'originPrice' => '1000' | ||
189 | ), | 196 | ), |
190 | array( | 197 | array( |
191 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 198 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
192 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 199 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
193 | - 'name' => 'test', | ||
194 | - 'price' => '888' | 200 | + 'name' => '短发上课就犯困啦圣诞节', |
201 | + 'price' => '888', | ||
202 | + 'originPrice' => '1000' | ||
195 | ), | 203 | ), |
196 | array( | 204 | array( |
197 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 205 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
198 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 206 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
199 | - 'name' => 'test', | ||
200 | - 'price' => '888' | 207 | + 'price' => '888', |
208 | + 'name' => '短发上课就犯困啦圣诞节', | ||
209 | + 'originPrice' => '1000' | ||
201 | ), | 210 | ), |
202 | array( | 211 | array( |
203 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 212 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
204 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 213 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
205 | 'name' => 'test', | 214 | 'name' => 'test', |
206 | - 'price' => '888' | 215 | + 'price' => '888', |
216 | + 'originPrice' => '1000' | ||
207 | ), | 217 | ), |
208 | array( | 218 | array( |
209 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 219 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
210 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 220 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
211 | 'name' => 'test', | 221 | 'name' => 'test', |
212 | - 'price' => '888' | 222 | + 'price' => '888', |
223 | + 'originPrice' => '1000' | ||
213 | ), | 224 | ), |
214 | array( | 225 | array( |
215 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 226 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
216 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 227 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
217 | 'name' => 'test', | 228 | 'name' => 'test', |
218 | - 'price' => '888' | 229 | + 'price' => '888', |
230 | + 'originPrice' => '1000' | ||
219 | ), | 231 | ), |
220 | array( | 232 | array( |
221 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 233 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
222 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 234 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
223 | 'name' => 'test', | 235 | 'name' => 'test', |
224 | - 'price' => '888' | 236 | + 'price' => '888', |
237 | + 'originPrice' => '1000' | ||
225 | ) | 238 | ) |
226 | 239 | ||
227 | ) | 240 | ) |
@@ -251,49 +264,57 @@ class Sale1Controller extends WebAction | @@ -251,49 +264,57 @@ class Sale1Controller extends WebAction | ||
251 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 264 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
252 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 265 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
253 | 'name' => 'test', | 266 | 'name' => 'test', |
254 | - 'price' => '888' | 267 | + 'price' => '888', |
268 | + 'originPrice' => '1000' | ||
255 | ), | 269 | ), |
256 | array( | 270 | array( |
257 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 271 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
258 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 272 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
259 | 'name' => 'test', | 273 | 'name' => 'test', |
260 | - 'price' => '888' | 274 | + 'price' => '888', |
275 | + 'originPrice' => '1000' | ||
261 | ), | 276 | ), |
262 | array( | 277 | array( |
263 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 278 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
264 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 279 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
265 | 'name' => 'test', | 280 | 'name' => 'test', |
266 | - 'price' => '888' | 281 | + 'price' => '888', |
282 | + 'originPrice' => '1000' | ||
267 | ), | 283 | ), |
268 | array( | 284 | array( |
269 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 285 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
270 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 286 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
271 | 'name' => 'test', | 287 | 'name' => 'test', |
272 | - 'price' => '888' | 288 | + 'price' => '888', |
289 | + 'originPrice' => '1000' | ||
273 | ), | 290 | ), |
274 | array( | 291 | array( |
275 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 292 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
276 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 293 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
277 | 'name' => 'test', | 294 | 'name' => 'test', |
278 | - 'price' => '888' | 295 | + 'price' => '888', |
296 | + 'originPrice' => '1000' | ||
279 | ), | 297 | ), |
280 | array( | 298 | array( |
281 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 299 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
282 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 300 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
283 | 'name' => 'test', | 301 | 'name' => 'test', |
284 | - 'price' => '888' | 302 | + 'price' => '888', |
303 | + 'originPrice' => '1000' | ||
285 | ), | 304 | ), |
286 | array( | 305 | array( |
287 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 306 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
288 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 307 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
289 | 'name' => 'test', | 308 | 'name' => 'test', |
290 | - 'price' => '888' | 309 | + 'price' => '888', |
310 | + 'originPrice' => '1000' | ||
291 | ), | 311 | ), |
292 | array( | 312 | array( |
293 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 313 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
294 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 314 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
295 | 'name' => 'test', | 315 | 'name' => 'test', |
296 | - 'price' => '888' | 316 | + 'price' => '888', |
317 | + 'originPrice' => '1000' | ||
297 | ) | 318 | ) |
298 | 319 | ||
299 | ) | 320 | ) |
@@ -323,49 +344,57 @@ class Sale1Controller extends WebAction | @@ -323,49 +344,57 @@ class Sale1Controller extends WebAction | ||
323 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 344 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
324 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 345 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
325 | 'name' => 'test', | 346 | 'name' => 'test', |
326 | - 'price' => '888' | 347 | + 'price' => '888', |
348 | + 'originPrice' => '1000' | ||
327 | ), | 349 | ), |
328 | array( | 350 | array( |
329 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 351 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
330 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 352 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
331 | 'name' => 'test', | 353 | 'name' => 'test', |
332 | - 'price' => '888' | 354 | + 'price' => '888', |
355 | + 'originPrice' => '1000' | ||
333 | ), | 356 | ), |
334 | array( | 357 | array( |
335 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 358 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
336 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 359 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
337 | 'name' => 'test', | 360 | 'name' => 'test', |
338 | - 'price' => '888' | 361 | + 'price' => '888', |
362 | + 'originPrice' => '1000' | ||
339 | ), | 363 | ), |
340 | array( | 364 | array( |
341 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 365 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
342 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 366 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
343 | 'name' => 'test', | 367 | 'name' => 'test', |
344 | - 'price' => '888' | 368 | + 'price' => '888', |
369 | + 'originPrice' => '1000' | ||
345 | ), | 370 | ), |
346 | array( | 371 | array( |
347 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 372 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
348 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 373 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
349 | 'name' => 'test', | 374 | 'name' => 'test', |
350 | - 'price' => '888' | 375 | + 'price' => '888', |
376 | + 'originPrice' => '1000' | ||
351 | ), | 377 | ), |
352 | array( | 378 | array( |
353 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 379 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
354 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 380 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
355 | 'name' => 'test', | 381 | 'name' => 'test', |
356 | - 'price' => '888' | 382 | + 'price' => '888', |
383 | + 'originPrice' => '1000' | ||
357 | ), | 384 | ), |
358 | array( | 385 | array( |
359 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 386 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
360 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 387 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
361 | 'name' => 'test', | 388 | 'name' => 'test', |
362 | - 'price' => '888' | 389 | + 'price' => '888', |
390 | + 'originPrice' => '1000' | ||
363 | ), | 391 | ), |
364 | array( | 392 | array( |
365 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', | 393 | 'href' => 'http://www.yohobuy.com/product/pro_327765_421995/TUCTUC36205TaoZhuang.html?channel=kids', |
366 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", | 394 | 'img' => "http://img13.static.yhbimg.com/goodsimg/2015/11/05/09/02eb88e527a57d0e26e13f2eb9cc35ad0e.jpg?imageMogr2/thumbnail/280x373/extent/280x373/background/d2hpdGU=/position/center/quality/90", |
367 | 'name' => 'test', | 395 | 'name' => 'test', |
368 | - 'price' => '888' | 396 | + 'price' => '888', |
397 | + 'originPrice' => '1000' | ||
369 | ) | 398 | ) |
370 | 399 | ||
371 | ) | 400 | ) |
@@ -384,33 +413,8 @@ class Sale1Controller extends WebAction | @@ -384,33 +413,8 @@ class Sale1Controller extends WebAction | ||
384 | 'saleList' => array( | 413 | 'saleList' => array( |
385 | 'saleBanner' => array( | 414 | 'saleBanner' => array( |
386 | 'bannerHeight' => 350, | 415 | 'bannerHeight' => 350, |
387 | - 'list' => array( | ||
388 | - array( | ||
389 | - 'bannerHeight' => 350, | ||
390 | 'img' => 'http://img12.static.yhbimg.com/couponImg/2015/12/10/08/02d4c26f19ca2e44359d69d5cff86167fb.jpg' | 416 | 'img' => 'http://img12.static.yhbimg.com/couponImg/2015/12/10/08/02d4c26f19ca2e44359d69d5cff86167fb.jpg' |
391 | ), | 417 | ), |
392 | - array( | ||
393 | - 'bannerHeight' => 350, | ||
394 | - 'img' => 'http://img12.static.yhbimg.com/yhb-img01/2016/01/06/05/02062366574a01418596caa38a773f6beb.jpg?imageView/1/w/1150/h/450' | ||
395 | - ), | ||
396 | - array( | ||
397 | - 'bannerHeight' => 350, | ||
398 | - 'img' => 'http://img11.static.yhbimg.com/yhb-img01/2016/01/06/05/013341a0632177cc3425c3c6082845be57.jpg?imageView/1/w/1150/h/450' | ||
399 | - ), | ||
400 | - array( | ||
401 | - 'bannerHeight' => 350, | ||
402 | - 'img' => 'http://img12.static.yhbimg.com/couponImg/2015/12/10/08/02d4c26f19ca2e44359d69d5cff86167fb.jpg' | ||
403 | - ), | ||
404 | - array( | ||
405 | - 'bannerHeight' => 350, | ||
406 | - 'img' => 'http://img12.static.yhbimg.com/yhb-img01/2016/01/06/05/02062366574a01418596caa38a773f6beb.jpg?imageView/1/w/1150/h/450' | ||
407 | - ), | ||
408 | - array( | ||
409 | - 'bannerHeight' => 350, | ||
410 | - 'img' => 'http://img11.static.yhbimg.com/yhb-img01/2016/01/06/05/013341a0632177cc3425c3c6082845be57.jpg?imageView/1/w/1150/h/450' | ||
411 | - ) | ||
412 | - ) | ||
413 | - ), | ||
414 | 'saleTitle' => array( | 418 | 'saleTitle' => array( |
415 | 'name' => '全部商品', | 419 | 'name' => '全部商品', |
416 | 'count' => 540 | 420 | 'count' => 540 |
-
Please register or login to post a comment