完善会员开通信息

This commit is contained in:
唐明明
2022-06-11 16:19:49 +08:00
20 changed files with 19188 additions and 18525 deletions

View File

@@ -22,11 +22,12 @@ const goods = id => {
}
// 店铺列表
const shops = (categoryId) => {
const shops = (categoryId,page) => {
return request({
url: 'mall/shops',
data: {
category_id: categoryId
category_id: categoryId,
page:page
}
})
}
@@ -39,12 +40,13 @@ const shopsDetail = (shopId) => {
}
// 店铺商品
const shopsGoods = (shop_id, category_id) => {
const shopsGoods = (shop_id, category_id,page) => {
return request({
url: 'mall/goods',
data: {
shop_id,
category_id
category_id,
page,
}
})
}