mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 14:40:44 +00:00
36 lines
576 B
JavaScript
Vendored
36 lines
576 B
JavaScript
Vendored
import http from "@/util/http.js";
|
|
|
|
// 店铺管理页面请求
|
|
|
|
// 店铺平台
|
|
export function shopListId() {
|
|
return http({
|
|
url: "/api/shop_platforms",
|
|
method: "get",
|
|
});
|
|
}
|
|
// 店铺新增
|
|
export function shopAdd(data) {
|
|
return http({
|
|
url: "/api/shops",
|
|
method: "post",
|
|
data,
|
|
});
|
|
}
|
|
// 店铺列表
|
|
export function storeList(params) {
|
|
return http({
|
|
url: "/api/shops",
|
|
method: "get",
|
|
params,
|
|
});
|
|
}
|
|
|
|
// 下载商品
|
|
export function downloadGoods(id) {
|
|
return http({
|
|
url: `/api/download/${id}/goods`,
|
|
method: "get",
|
|
});
|
|
}
|