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.
51 lines
769 B
JavaScript
51 lines
769 B
JavaScript
2 years ago
|
import axios from "@/utils/request";
|
||
|
|
||
|
export function list(query) {
|
||
|
return axios({
|
||
|
url: "/system/param/help/list",
|
||
|
method: "get",
|
||
|
params: query
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function insertMenuHelp(query) {
|
||
|
return axios({
|
||
|
url: "/system/param/help/insertMenuHelp",
|
||
|
method: "post",
|
||
|
data: query
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
export function updateMenuHelp(query) {
|
||
|
return axios({
|
||
|
url: "/system/param/help/updateMenuHelp",
|
||
|
method: "post",
|
||
|
data: query
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function deleteMenuHelp(query) {
|
||
|
return axios({
|
||
|
url: "/system/param/help/deleteMenuHelp",
|
||
|
method: "get",
|
||
|
params: query
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function selectAuthMenu(query) {
|
||
|
return axios({
|
||
|
url: "/system/param/help/selectAuthMenu",
|
||
|
method: "get",
|
||
|
params: query
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|