前端 mobile :商品列表

This commit is contained in:
YunaiV
2019-03-26 00:27:25 +08:00
parent 40e4236af2
commit 2d978d5168
8 changed files with 613 additions and 472 deletions

View File

@@ -8,4 +8,16 @@ export function getProductCategoryList(pid) {
pid
}
});
}
export function getProductSpuPage(cid, pageNo, pageSize) {
return request({
url: 'product-api/users/spu/page',
method: 'get',
params: {
cid,
pageNo: pageNo || 1,
pageSize: pageSize || 10,
}
});
}