问题描述:
点击取消收藏后无反应
解决方法:
- 文件路径 pages/users/user_goods_collection/index.vue
- 按照下图中标记内容对比修改
del(type) {
if (!this.getIds().length) {
return this.$util.Tips({
title: '请选择收藏商品或视频'
});
}
collectDel(this.getIds(), type).then(res => {
this.loadend = false;
this.page = 1;
this.$set(this, 'collectProductList', []);
this.get_user_collect_product(type);
return this.$util.Tips({
title: res.msg
});
}).catch(err => {
return this.$util.Tips({
title: err
});
})
}
- 修改完成后需重新打包,打包文档 https://doc.crmeb.com/pro/crmebprov2/2349