!689 fix:修复重置密码接口错误导致管理员忘记密码功能异常

Merge pull request !689 from Baron.Bai/fix-admin-reset-password
pull/687/MERGE
芋道源码 2025-02-08 23:45:31 +00:00 committed by Gitee
commit a39698d6ab
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 1 deletions

View File

@ -83,5 +83,5 @@ export const reqCheck = (data: any) => {
// 通过短信重置密码
export const smsResetPassword = (data: any) => {
return request.post({ url: '/system/auth/sms-reset-password', data })
return request.post({ url: '/system/auth/reset-password', data })
}