fix: layout icon

This commit is contained in:
xiaoxian521
2021-12-06 11:00:58 +08:00
parent 8d65f8ee92
commit 5564250e7d
2 changed files with 7 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
import { http } from "../utils/http";
export const getAsyncRoutes = (data?: object) => {
return http.request("get", "/getAsyncRoutes", { data });
export const getAsyncRoutes = (params?: object) => {
return http.request("get", "/getAsyncRoutes", { params });
};