登录相关接口修改

This commit is contained in:
lix
2025-06-12 17:19:44 +08:00
parent 1b8ef1b5e2
commit f3db585804
7 changed files with 17 additions and 17 deletions

View File

@ -9,7 +9,7 @@ export async function getMenu(params: any) {
}
export async function fgetUserMsg(params: any) {
return request('/api/core-service-ebtp-userinfo/v1/userinfo/get', {
return request('/api/sys-manager-ebtp-project/v1/userinfo/get', {
method: 'GET',
headers: { 'Authorization': params },
data: params,
@ -17,7 +17,7 @@ export async function fgetUserMsg(params: any) {
}
export async function getLogout() { // 退出登录,注销
return request('/api/core-service-ebtp-userinfo/v1/userinfo/logout', {
return request('/api/sys-manager-ebtp-project/v1/userinfo/logout', {
method: 'get',
// params
});