|
@@ -20,13 +20,12 @@ interface StuMenuOption {
|
|
name: string;
|
|
name: string;
|
|
routeCode: string;
|
|
routeCode: string;
|
|
weight: number;
|
|
weight: number;
|
|
- [propName: any]: any;
|
|
|
|
|
|
+ [propName: string]: any;
|
|
}
|
|
}
|
|
/** 获取用户菜单 */
|
|
/** 获取用户菜单 */
|
|
export async function studentClientMenuApi(rootOrgId: number) {
|
|
export async function studentClientMenuApi(rootOrgId: number) {
|
|
return httpApp.get<any, { data: StuMenuOption[] }>(
|
|
return httpApp.get<any, { data: StuMenuOption[] }>(
|
|
"/api/ecs_core/rolePrivilege/getStudentClientMenu",
|
|
"/api/ecs_core/rolePrivilege/getStudentClientMenu",
|
|
- null,
|
|
|
|
{ params: { rootOrgId } }
|
|
{ params: { rootOrgId } }
|
|
);
|
|
);
|
|
}
|
|
}
|