|
@@ -5,7 +5,8 @@ |
|
@@ -5,7 +5,8 @@ |
5
|
*/
|
5
|
*/
|
6
|
|
6
|
|
7
|
var $ = require('yoho-jquery'),
|
7
|
var $ = require('yoho-jquery'),
|
8
|
- Swiper = require('yoho-swiper');
|
8
|
+ Swiper = require('yoho-swiper'),
|
|
|
9
|
+ lazyload = require('yoho-jquery-lazyload');
|
9
|
|
10
|
|
10
|
var search = require('./sale/search');
|
11
|
var search = require('./sale/search');
|
11
|
|
12
|
|
|
@@ -29,8 +30,27 @@ $('.swiper-container').each(function() { |
|
@@ -29,8 +30,27 @@ $('.swiper-container').each(function() { |
29
|
|
30
|
|
30
|
$(function() {
|
31
|
$(function() {
|
31
|
var $saleNavSelect = $('.sale-nav-select');
|
32
|
var $saleNavSelect = $('.sale-nav-select');
|
|
|
33
|
+ var $vipFloor = $('.vip-floor');
|
32
|
|
34
|
|
33
|
$('.sale-nav').on('click', function() {
|
35
|
$('.sale-nav').on('click', function() {
|
34
|
$saleNavSelect.toggleClass('show');
|
36
|
$saleNavSelect.toggleClass('show');
|
35
|
});
|
37
|
});
|
|
|
38
|
+
|
|
|
39
|
+ // 读取会员专享商品
|
|
|
40
|
+ $.ajax({
|
|
|
41
|
+ url: '/product/sale/search',
|
|
|
42
|
+ data: {
|
|
|
43
|
+ channel: window.queryString.channel || 'boys',
|
|
|
44
|
+ yh_channel: window.queryString.channel || 'boys',
|
|
|
45
|
+ saleType: '2',
|
|
|
46
|
+ type: 'all',
|
|
|
47
|
+ order: '0',
|
|
|
48
|
+ limit: '4'
|
|
|
49
|
+ }
|
|
|
50
|
+ }).then(function(res) {
|
|
|
51
|
+ if (/good-info/.test(res)) {
|
|
|
52
|
+ $vipFloor.html(res).addClass('goods-container');
|
|
|
53
|
+ lazyload($vipFloor.find('img.lazy'));
|
|
|
54
|
+ }
|
|
|
55
|
+ });
|
36
|
}); |
56
|
}); |