feat: 增加用户关注列表 和 用户详情页

This commit is contained in:
alger
2025-03-24 22:54:04 +08:00
parent 9f5bac29a0
commit 2924ad6c18
13 changed files with 1059 additions and 16 deletions
+14
View File
@@ -14,6 +14,20 @@ export interface IUserDetail {
profileVillageInfo: ProfileVillageInfo;
}
export interface IUserFollow {
followed: boolean;
follows: boolean;
nickname: string;
avatarUrl: string;
userId: number;
gender: number;
signature: string;
backgroundUrl: string;
vipType: number;
userType: number;
accountType: number;
}
interface ProfileVillageInfo {
title: string;
imageUrl?: any;