登录后修改密码🐱

This commit is contained in:
2025-07-13 21:40:32 +08:00
parent bcf943d9f1
commit 46fa0a7668
10 changed files with 1226 additions and 20 deletions

View File

@@ -182,3 +182,18 @@ export const resetPassword = async (token, password) => {
}
}
/**
* 忘记密码
* @param {string} qq - QQ号
* @param {string} new_password - 新密码
* @param {string} token - 验证码token
* @param {string} captcha - 用户输入的验证码
*/
export const forgetPassword = async (qq, new_password, token, captcha) => {
try {
} catch (error) {
throw error;
}
}