brand.js
1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* 品牌页面
* @auhtor: bikai<kai.bi@yoho.cn>
* @date: 2016/1/21
*/
var $ = require('yoho-jquery');
var $brandFavor = $('#brand-favor'),
$shopFavor = $('#shop-favor'),
shopId = $shopFavor.data('id'),
id = $brandFavor.data('id'),
isFavorite = $shopFavor.find('i').hasClass('coled');
/**
* 品牌收藏
*/
$brandFavor.on('click', function() {
$.ajax({
type: 'post',
url: '/product/index/favoriteBrand',
data: {
brandId: id
}
}).then(function(res) {
if (res.code === 200) {
$brandFavor.find('i').toggleClass('coled');
} else if (res.code === 403) {
location.href = '//www.yohobuy.com/signin.html?refer=' + encodeURIComponent(location.href);
}
});
});
/**
* 店铺收藏
*/
$shopFavor.on('click', function() {
$.ajax({
type: 'post',
url: '/product/index/favoriteShop',
data: {
isFavorite: isFavorite ? 0 : 1,
shopId: shopId
}
}).then(function(res) {
if (res.code === 200) {
$shopFavor.find('i').toggleClass('coled');
} else if (res.code === 403) {
location.href = '//www.yohobuy.com/signin.html?refer=' + encodeURIComponent(location.href);
}
});
});
// 页面进入更新收藏状态
$.ajax({
type: 'POST',
url: '/product/index/isFavoriteBrand',
data: {
brandId: id
}
}).then(function(data) {
if (data.code === 200) {
// 已收藏
$brandFavor.find('i').addClass('coled');
} else if (data.code === 404) {
// 未收藏
$brandFavor.find('i').removeClass('coled');
}
});