feat: 项目接口联调

This commit is contained in:
JiaJun
2026-04-10 09:27:11 +08:00
parent 906fa63870
commit af3ed15ba2
62 changed files with 4307 additions and 982 deletions

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

@@ -0,0 +1,8 @@
import type {UserAssetsParams, UserAssetsResponse} from "@/types/user.type.ts";
import {http} from "@/lib";
/** @description 用户资产*/
export const userAssets = (params: UserAssetsParams) => http.get<UserAssetsResponse>('v1/mall/assets', {
searchParams: params,
})