feat: 新增重置密码弹窗

This commit is contained in:
xlsea
2025-05-15 22:26:34 +08:00
parent 07a8d96f03
commit 84e8da75fc
4 changed files with 156 additions and 24 deletions

View File

@ -152,7 +152,9 @@ declare namespace Api {
type UserProfileOperateParams = CommonType.RecordNullable<Pick<User, 'nickName' | 'email' | 'phonenumber' | 'sex'>>;
/** user password operate params */
type UserPasswordOperateParams = CommonType.RecordNullable<Pick<User, 'password'> & { newPassword: string }>;
type UserPasswordOperateParams = CommonType.RecordNullable<
Pick<User, 'userId' | 'password'> & { newPassword: string }
>;
/** user info */
type UserInfo = {