完善会员开通信息
This commit is contained in:
@@ -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,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user