2024-11-01 15:27:36 +08:00
|
|
|
import http from "@/api";
|
|
|
|
|
import { ADMIN as rePrefix } from "@/api/config/serviceName";
|
|
|
|
|
import type { Function } from "@/api/function/interface";
|
|
|
|
|
|
2024-11-14 11:34:25 +08:00
|
|
|
|
2024-11-14 18:26:34 +08:00
|
|
|
|
|
|
|
|
// 获取资源
|
|
|
|
|
export const getFunctionList = () => {
|
|
|
|
|
return http.get<Function.ResFunction>(`/sysFunction/functionTree`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 获取资源不包括按钮
|
|
|
|
|
export const getFunctionListNoButton = () => {
|
|
|
|
|
return http.get<Function.ResFunction>(`/sysFunction/functionTreeNoButton`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2024-11-01 15:27:36 +08:00
|
|
|
//添加菜单列表
|
2024-11-14 11:34:25 +08:00
|
|
|
export const addFunction = (params: Function.ResFunction) => {
|
2024-11-14 18:26:34 +08:00
|
|
|
return http.post(`/sysFunction/add`,params);
|
2024-11-01 15:27:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//删除菜单列表
|
2024-11-14 18:26:34 +08:00
|
|
|
export const deleteFunction = (params: Function.ResFunction) => {
|
|
|
|
|
return http.post(`/sysFunction/delete?id=${params.id}`);
|
2024-11-01 15:27:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//编辑菜单列表
|
2024-11-14 11:34:25 +08:00
|
|
|
export const updateFunction = (params: Function.ResFunction) => {
|
2024-11-14 18:26:34 +08:00
|
|
|
return http.put(`/sysFunction/update`, params);
|
2024-11-01 15:27:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|