店铺会员制Vip功能增加

This commit is contained in:
2022-08-11 15:48:33 +08:00
parent 7e8ed7115d
commit 4b3d83007b
35 changed files with 6869 additions and 2379 deletions

View File

@@ -34,20 +34,18 @@ const shops = (categoryId,page) => {
// 店铺详情
const shopsDetail = (shopId) => {
console.log(shopId,'shopId.....')
return request({
url: 'mall/shops/' + shopId,
})
}
// 店铺商品
const shopsGoods = (shopId, categoryId,page) => {
const shopsGoods = (data) => {
console.log(data,'shopsGoods.....')
return request({
url: 'mall/goods',
data: {
shop_id:shopId,
category_id:categoryId,
page:page,
}
data: data
})
}