zhangwei
2025-07-24 4d75f39fca8c6afbe8a120a329af8b2a59a1cd61
1
2
3
4
5
6
7
8
9
10
import { http } from "@/utils/http";
 
type Result = {
  success: boolean;
  data: Array<any>;
};
 
export const getAsyncRoutes = () => {
  return http.request<Result>("get", "/get-async-routes");
};