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
684 B
JavaScript
34 lines
684 B
JavaScript
import axios from "@/utils/request";
|
|
|
|
|
|
export function filterLog(query) {
|
|
return axios({
|
|
url: "/udiwms/thrOrder/exportLog/filter",
|
|
method: "get",
|
|
params: query
|
|
});
|
|
}
|
|
export function deleteLog(query) {
|
|
return axios({
|
|
url: "/udiwms/thrOrder/exportLog/deleteLog",
|
|
method: "post",
|
|
data: query
|
|
});
|
|
}
|
|
|
|
export function downloadLog(query) {
|
|
return axios({
|
|
url: "/udiwms/thrOrder/exportLog/download",
|
|
method: "get",
|
|
params: query
|
|
});
|
|
}
|
|
export function exportExcel(query) {
|
|
return axios({
|
|
url: "/udiwms/thrOrder/importLog/export",
|
|
method: "post",
|
|
data: query
|
|
});
|
|
}
|
|
|