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.
28 lines
534 B
JavaScript
28 lines
534 B
JavaScript
3 years ago
|
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 testConnect(query) {
|
||
|
return axios({
|
||
|
url: "/spssync/basic/connect/test",
|
||
|
method: "get",
|
||
|
params: query
|
||
|
});
|
||
|
}
|
||
|
|