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/src/api/basic/udidb.js

19 lines
356 B
JavaScript

3 years ago
import axios from "../../utils/axios2";
export function filterLogs(query) {
return axios({
url: "/udisync/udi/importLog/filter",
method: "get",
params: query
});
}
export function deleteLog(query) {
return axios({
url: "/udisync/udi/importLog/deleteLog",
method: "post",
data: query
});
}