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
662 B
JavaScript
34 lines
662 B
JavaScript
import axios from "../../utils/axios";
|
|
|
|
export function getThrOrders(query) {
|
|
return axios({
|
|
url: "/udiwms/thrsys/getOrders",
|
|
method: "get",
|
|
params: query
|
|
});
|
|
}
|
|
|
|
export function getThrOrderDetails(query) {
|
|
return axios({
|
|
url: "/udiwms/thrsys/getOrderDetails",
|
|
method: "get",
|
|
params: query
|
|
});
|
|
}
|
|
|
|
export function delThrOrders(query) {
|
|
return axios({
|
|
url: "/udiwms/thrsys/delOrder",
|
|
method: "post",
|
|
data: query
|
|
});
|
|
}
|
|
|
|
export function delAll(query) {
|
|
return axios({
|
|
url: "/udiwms/thrsys/order/delAll",
|
|
method: "get",
|
|
params: query
|
|
});
|
|
}
|