mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-12-18 16:20:38 +08:00
release: update 3.6.0
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import { http } from "../utils/http";
|
||||
|
||||
type Result = {
|
||||
code: number;
|
||||
info: Array<any>;
|
||||
success: boolean;
|
||||
data: Array<any>;
|
||||
};
|
||||
|
||||
export const getAsyncRoutes = (params?: object) => {
|
||||
return http.request<Result>("get", "/getAsyncRoutes", { params });
|
||||
export const getAsyncRoutes = () => {
|
||||
return http.request<Result>("get", "/getAsyncRoutes");
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user