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.
udiwms-vue-frame/src/api/collect/collectOrder.js

29 lines
484 B
JavaScript

11 months ago
import axios from "@/utils/request"
export function orderPage(query) {
return axios({
url: "/udiwms/basic/collect/order/filter",
method: "get",
params: query
});
}
export function orderDetail(query) {
return axios({
url: "/udiwms/basic/collect/order/detail",
method: "get",
params: query
});
}
export function deleteByOrder(query) {
return axios({
url: "/udiwms/basic/collect/order/deleteOrder",
method: "post",
data: query
});
}