collect 8.7
This commit is contained in:
@@ -314,10 +314,21 @@ export default {
|
||||
goodsShelves({live_id}){
|
||||
return vm.$u.post('Specialci/goodsShelves',{live_id})
|
||||
},
|
||||
//
|
||||
// 收藏店铺
|
||||
addFavoriteStore({ id }) {
|
||||
return vm.$u.post('member/addFavoriteStore',{ fid: id })
|
||||
},
|
||||
// 收藏商品
|
||||
addFavoriteGoods({ fid }) {
|
||||
return vm.$u.post('member/addFavoriteGoods',{ fid: fid })
|
||||
},
|
||||
// 取消收藏(商品/店铺)
|
||||
removeFavorite({ fid, type }) {
|
||||
return vm.$u.post('Member/removeFavorite',{
|
||||
fav_id: fid,
|
||||
type: type
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user