feat: 首页接口对接

This commit is contained in:
zoujing
2026-04-03 14:23:15 +08:00
parent 9436ff138e
commit 84360653ed
4 changed files with 79 additions and 32 deletions

8
src/api/types.ts Normal file
View File

@@ -0,0 +1,8 @@
/* eslint-disable */
// @ts-ignore
export type Response<T = any> = {
code: number;
msg: string;
data: T;
};