我的收藏:接入完成

This commit is contained in:
YunaiV
2023-12-15 00:01:54 +08:00
parent 4e85f86529
commit 3b5c84f970
4 changed files with 98 additions and 71 deletions
+24
View File
@@ -0,0 +1,24 @@
import request from '@/sheep/request';
const FavoriteApi = {
// 获得商品收藏分页
getFavoritePage: (data) => {
return request({
url: '/app-api/product/favorite/page',
method: 'GET',
params: data
});
},
// 取消商品收藏
deleteFavorite: (spuId) => {
return request({
url: '/app-api/product/favorite/delete',
method: 'DELETE',
data: {
spuId
}
});
}
};
export default FavoriteApi;