Merge branch '20220815-登录过程中用户信息错误导致登录失败的业务处理' of http://10.124.128.2:8888/eshop/fe_service_ebtp_frontend into uat-export-face-recog

This commit is contained in:
jl-zhoujl2
2022-09-07 17:29:09 +08:00
7 changed files with 186 additions and 160 deletions

View File

@ -125,4 +125,14 @@ export async function getFakeCaptcha(params: any) {
});
}
/**
* 用户登出
* @param params
* @returns
*/
export async function logoutTokenApi(params: any) {
return request('/api/auth/logout', {
method: 'GET',
params: params
});
}