...
|
...
|
@@ -6,7 +6,8 @@ |
|
|
var $ = require('yoho-jquery'),
|
|
|
lazyload = require('yoho-jquery-lazyload');
|
|
|
|
|
|
var $mainThumb = $('#main-thumb'),
|
|
|
var $main = $('.product-main'),
|
|
|
$mainThumb = $('#main-thumb'),
|
|
|
$checkBtns = $('.check-btns');
|
|
|
|
|
|
var $tradeWrapper = $('.trade-wrapper'),
|
...
|
...
|
@@ -25,7 +26,8 @@ var $thumbCur = $('.thumb-wrap .cur'); // 当前选中展示图片 |
|
|
|
|
|
var SLIDETIME = 200;
|
|
|
|
|
|
var thumbsLoaded = [];
|
|
|
var thumbsLoaded = [],
|
|
|
id = $main.data('id');
|
|
|
|
|
|
require('../common/header');
|
|
|
|
...
|
...
|
@@ -179,3 +181,28 @@ $addToBag.click(function() { |
|
|
});
|
|
|
}
|
|
|
});
|
|
|
|
|
|
$('#collect-product').click(function() {
|
|
|
var $this = $(this),
|
|
|
param = {
|
|
|
productId: id,
|
|
|
type: 'add'
|
|
|
};
|
|
|
|
|
|
if ($this.hasClass('coll')) {
|
|
|
param.type = 'cancel';
|
|
|
}
|
|
|
|
|
|
$.ajax({
|
|
|
type: 'POST',
|
|
|
url: '/product/item/togglecollect',
|
|
|
data: param
|
|
|
}).then(function(data) {
|
|
|
if (data.code === 200) {
|
|
|
$this.toggleClass('coll');
|
|
|
} else if (data.code === 403) {
|
|
|
location.href = data.data.refer;
|
|
|
}
|
|
|
});
|
|
|
|
|
|
}); |
...
|
...
|
|