35 lines
558 B
JavaScript
Raw Normal View History

2022-08-12 18:26:27 +08:00
import http from "@/util/http.js";
// 店铺管理页面请求
// 店铺平台
export function shopListId() {
2022-08-04 18:59:32 +08:00
return http({
2022-08-12 18:26:27 +08:00
url: "/api/shop_platforms",
method: "get",
});
2022-08-04 18:59:32 +08:00
}
// 店铺新增
2022-08-12 18:26:27 +08:00
export function shopAdd(data) {
2022-08-04 18:59:32 +08:00
return http({
2022-08-12 18:26:27 +08:00
url: "/api/shops",
method: "post",
data,
});
2022-08-04 18:59:32 +08:00
}
// 店铺列表
2022-08-17 15:40:04 +08:00
export function storeList() {
2022-08-04 18:59:32 +08:00
return http({
2022-08-12 18:26:27 +08:00
url: "/api/shops",
method: "get",
2022-08-17 15:40:04 +08:00
});
}
// 下载商品
export function downloadGoods(id) {
return http({
url: `/api/download/${id}/goods`,
method: "get",
2022-08-12 18:26:27 +08:00
});
2022-08-04 18:59:32 +08:00
}