store 8.5

This commit is contained in:
2020-08-05 17:38:11 +08:00
parent a47238a7a4
commit 0057bcd28e
21 changed files with 688 additions and 101 deletions

View File

@@ -173,10 +173,17 @@ export default {
goods_id: id
});
},
getStoreGoodsList({ id, page = 0}){
getStoreGoodsList({ id, page, order, gc_id }){
return vm.$u.post('Store/getStoreGoodsList', {
id: id,
page:page
page: page,
order: order,
gc_id: gc_id,
});
},
getStoreClassifyList({ id }) {
return vm.$u.post('Store/getStoreClassifyList', {
id: id
});
},
getStoreImgVideoList({id}){
@@ -306,7 +313,11 @@ export default {
// 达人上架商品
goodsShelves({live_id}){
return vm.$u.post('Specialci/goodsShelves',{live_id})
}
},
//
addFavoriteStore({ id }) {
return vm.$u.post('member/addFavoriteStore',{ fid: id })
},
}
}