chore: 更新依赖包版本

This commit is contained in:
Ray.Hao
2026-02-14 12:08:07 +08:00
parent 91977f4ff4
commit b050824da7
6 changed files with 5769 additions and 4718 deletions

View File

@@ -394,7 +394,8 @@ function handleResetPassword(row: UserItem): void {
inputPattern: /.{6,}/,
inputErrorMessage: "密码至少需要6位字符",
})
.then(({ value }) => {
.then((result: any) => {
const value = result.value;
return UserAPI.resetPassword(row.id, value);
})
.then(