...
|
...
|
@@ -23,6 +23,7 @@ |
|
|
const yoho = require('yoho');
|
|
|
const $ = require('jquery');
|
|
|
const cheader = require('component/header.vue');
|
|
|
const tip = require('common/tip');
|
|
|
|
|
|
module.exports = {
|
|
|
data() {
|
...
|
...
|
@@ -76,6 +77,11 @@ |
|
|
if (result.code === 200) {
|
|
|
this.shareData.isFav = !this.shareData.isFav;
|
|
|
yoho.store.set('brandReload', true);
|
|
|
if (this.shareData.isFav) {
|
|
|
tip('收藏成功');
|
|
|
} else {
|
|
|
tip('取消成功');
|
|
|
}
|
|
|
} else if (result.code === 403) {
|
|
|
yoho.goLogin('', this.collectShop);
|
|
|
}
|
...
|
...
|
|