Authored by xuqi

location page login

... ... @@ -86,9 +86,7 @@ likeHammer.on('tap', function(e) {
if (data.code === 200) {
$this.toggleClass('like');
} else if (data.code === 400 || data.code === 412) {
//code:412 用户ID不正确,即未登录
tip.show('未登录');
location.href = data.data; //未登录跳转登录页面
} else {
tip.show(data.message);
}
... ...
... ... @@ -401,7 +401,7 @@ if ($brandHeader.length > 0) {
if (data.code === 200) {
$this.toggleClass('coled');
} else if (data.code === 400 || data.code === 412) {
tip.show('未登录');
location.href = data.data;//未登录跳转登录页
} else {
tip.show(data.message);
}
... ...