首页概览数据

This commit is contained in:
禺狨
2023-03-23 10:49:47 +08:00
parent 20e64cd56c
commit e7be30c700
4 changed files with 147 additions and 94 deletions

5
src/api/dashboard.ts Normal file
View File

@@ -0,0 +1,5 @@
import client from "./internal/httpClient";
export function dashboardList() {
return client.get("/backend/v1/dashboard/index", {});
}

View File

@@ -12,3 +12,4 @@ export * as resource from "./resource";
export * as upload from "./upload";
export * as user from "./user";
export * as appConfig from "./app-config";
export * as dashboard from "./dashboard";