注册/修改手机号优化

This commit is contained in:
GaoHao
2025-01-14 10:27:23 +08:00
parent e38575f236
commit d6be7802c8
4 changed files with 21 additions and 6 deletions

View File

@@ -31,3 +31,14 @@ export const updateUsers = (data) => {
data: data,
})
}
/**
* 修改手机号
*/
export const updatePhone = (data) => {
return http.request({
url: '/user/updatePhone',
method: 'POST',
params: data
})
}