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.
udi-cpt-vue/src/api/thrsys/thrUploadSet.js

18 lines
315 B
JavaScript

import axios from "@/utils/request";
export function getConfig(params) {
return axios({
url: "/system/third/syncData/config",
method: "get",
params: params
});
}
export function saveConfig(data) {
return axios({
url: "/system/third/syncData/save",
method: "post",
data: data
});
}