Files
backend/mobile-web/src/api/product.js
xiaofeng 83d8bc4fab 1.前端页面接入商品收藏接口,
2.暂时使用alert弹出框提示收藏和取消收藏,回头改成颜色显示效果
2019-07-09 23:54:36 +08:00

41 lines
783 B
Java

import request from "../config/request";
export function getProductCategoryList(pid) {
return request({
url: '/product-api/users/category/list',
method: 'get',
params: {
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,
}
});
}
export function getProductSpuInfo(id) {
return request({
url: '/product-api/users/spu/info',
method: 'get',
params: {
id,
}
});
}
export function collectionSpu(spuId,hasCollectionType) {
return request({
url: '/product-api/users/spu/collection/'+spuId+'/' + hasCollectionType,
method: 'post'
});
}