货无忧
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
1.8 KiB

2 years ago
import request from "@/utils/request.js";
/**
* 请求登录
* @param {Object} data
*/
export function oauthtoken(data) {
return request({
url: `blade-auth/oauth/token`,
method: "post",
data
});
}
/**
* 备货信息列表
* @param {Object} data
*/
export function distributionStockuppageList(data) {
return request({
url: `logpm-distribution/app/distributionStockup/pageList`,
method: "post",
data
});
}
/**
* 备货客户列表
* @param {Object} data
*/
export function distributionStockuporderList(data) {
return request({
url: `logpm-distribution/app/distributionStockup/orderList`,
method: "post",
data
});
}
/**
* 备货客户订单明细
* @param {Object} data
*/
export function distributionStockuporderInfo(data) {
return request({
url: `logpm-distribution/app/distributionStockup/orderInfo`,
method: "post",
data
});
}
/**
* 备货扫码
* @param {Object} data
*/
export function distributionStockupstockupScan(data) {
return request({
url: `logpm-distribution/app/distributionStockup/stockupScan`,
method: "post",
data
});
}
/**
* 自提信息列表
* @param {Object} data
*/
export function billLadingpageList(data) {
return request({
url: `logpm-distribution/app/billLading/pageList`,
method: "post",
data
});
}
/**
* 自提订单列表
* @param {Object} data
*/
export function billLadingorderList(data) {
return request({
url: `logpm-distribution/app/billLading/orderList`,
method: "post",
data
});
}
/**
* 自提订单详情
* @param {Object} data
*/
export function billLadingdetailList(data) {
return request({
url: `logpm-distribution/app/billLading/detailList`,
method: "post",
data
});
}
/**
* 装车扫描
* @param {Object} data
*/
export function deliverypage(data) {
return request({
url: `logpm-distribution/app/delivery/page`,
method: "get",
data
});
}