mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 14:40:44 +00:00
101 lines
1.8 KiB
JavaScript
Vendored
101 lines
1.8 KiB
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",
|
|
});
|
|
}
|
|
|
|
export function updateStore(id, params) {
|
|
return http({
|
|
url: `/api/shops/${id}`,
|
|
method: "patch",
|
|
params,
|
|
});
|
|
}
|
|
|
|
export function syncStoreStock(params) {
|
|
return http({
|
|
url: '/api/sync/shop/stock',
|
|
method: "put",
|
|
params,
|
|
});
|
|
}
|
|
|
|
export function shipList() {
|
|
return http({
|
|
url: '/api/shop/ship',
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
export function ShopSenderList(shopId, shopShipId) {
|
|
return http({
|
|
url: '/api/shop/ship/senders',
|
|
method: 'get',
|
|
params: {
|
|
'shop_id': shopId,
|
|
'shop_ship_id': shopShipId,
|
|
}
|
|
})
|
|
}
|
|
|
|
export function saveSenders(params) {
|
|
return http({
|
|
url: '/api/shop/ship/senders',
|
|
method: 'post',
|
|
params
|
|
})
|
|
}
|
|
|
|
export function orderRest(params) {
|
|
return http({
|
|
url: '/api/order/reset',
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
export function shopAddress(params) {
|
|
return http({
|
|
url: "/api/shop_sends",
|
|
method: "get",
|
|
params,
|
|
});
|
|
}
|
|
|
|
export function updateShopAddress(params) {
|
|
return http({
|
|
url: '/api/shop_sends',
|
|
method: 'post',
|
|
params
|
|
})
|
|
}
|