You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
659 B
JavaScript
34 lines
659 B
JavaScript
3 years ago
|
import axios from "../../utils/axios";
|
||
|
|
||
|
export function getStackOrderList(params) {
|
||
|
return axios({
|
||
|
url: "/udims/stack/order/filter",
|
||
|
method: "get",
|
||
|
params: params
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function updateStack(data) {
|
||
|
return axios({
|
||
|
url: "/udims/stack/order/update",
|
||
|
method: "post",
|
||
|
data: data
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function deleteStackOrder(data) {
|
||
|
return axios({
|
||
|
url: "/udims/stack/order/delete",
|
||
|
method: "post",
|
||
|
data: data
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function uploadStack(data) {
|
||
|
return axios({
|
||
|
url: "/udims/stack/order/upload",
|
||
|
method: "post",
|
||
|
data: data
|
||
|
});
|
||
|
}
|