修复BUG:

1.密码重置;
2.个人中心密码修改
This commit is contained in:
猿小天
2024-05-09 11:11:23 +08:00
parent a03b14a32d
commit 0d9ee1f4d4
4 changed files with 28 additions and 6 deletions

View File

@@ -56,3 +56,11 @@ export function exportData(params:any){
method: 'get'
})
}
export function resetToDefaultPassword(id:any){
return request({
url: apiPrefix + id + '/reset_to_default_password/',
method: 'put'
})
}