增加重置用户密码功能

This commit is contained in:
蒋吉兆
2021-11-17 22:45:16 +08:00
parent 7c72ab9dcb
commit ff4121510c
12 changed files with 149 additions and 5 deletions

View File

@@ -141,3 +141,10 @@ export const getUserInfo = () => {
method: 'get'
})
}
export const resetPassword = () => {
return service({
url: '/user/resetPassword',
method: 'post'
})
}