Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-21 11:29:20 +08:00

fix: 获取用户详情接口更换为 get 请求

This commit is contained in:
pany 2022-10-20 19:32:25 +08:00
parent 2f54ce1891
commit e7e1c4270b

View File

@ -28,6 +28,6 @@ export function loginApi(data: ILoginData) {
export function getUserInfoApi() {
return request({
url: "users/info",
method: "post"
method: "get"
})
}