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.
35 lines
685 B
JavaScript
35 lines
685 B
JavaScript
import axios from "../../utils/axios";
|
|
|
|
|
|
export function filterLog(query) {
|
|
return axios({
|
|
url: "/spssync/download/basic/udiinfo/filter",
|
|
method: "get",
|
|
params: query
|
|
});
|
|
}
|
|
|
|
export function deleteLog(query) {
|
|
return axios({
|
|
url: "/spssync/download/basic/udiinfo/deleteByStatus",
|
|
method: "post",
|
|
data: query
|
|
});
|
|
}
|
|
|
|
export function findConfig(query) {
|
|
return axios({
|
|
url: "/system/param/syncData/config",
|
|
method: "get",
|
|
params: query
|
|
});
|
|
}
|
|
|
|
export function downloadNow(params) {
|
|
return axios({
|
|
url: "/spsync/download/now",
|
|
method: "get",
|
|
params: params
|
|
});
|
|
}
|