...
|
...
|
@@ -253,14 +253,15 @@ $('#keep-shopping').click(function() { |
|
|
|
|
|
$('#brand-fav').click(function() {
|
|
|
var $this = $(this),
|
|
|
info = $this.data(),
|
|
|
param = {};
|
|
|
param = {
|
|
|
brandId: $this.data('id'),
|
|
|
type: 'add'
|
|
|
};
|
|
|
|
|
|
if (!info.id) {
|
|
|
if (!param.brandId) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
param.brandId = info.id;
|
|
|
if ($this.hasClass('coll')) {
|
|
|
param.type = 'cancel';
|
|
|
}
|
...
|
...
|
|