个人中心页面路径配置

This commit is contained in:
GaoHao
2025-01-08 15:30:20 +08:00
parent b7248db2af
commit ca84e7d51e
6 changed files with 46 additions and 34 deletions

View File

@@ -8,4 +8,15 @@ export const selectUserById = (data) => {
url: '/user/selectUserById',
data: data
})
}
}
/**
* 修改用户信息
*/
export const updateUsers = (data) => {
return http.request({
url: '/user/updateUsers',
method: 'POST',
data: data,
})
}