fix: 修复appUserInfo接口前缀问题

This commit is contained in:
2025-11-12 22:38:22 +08:00
parent c01524616c
commit 727297428b
3 changed files with 12 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ import request from '@/utilsRc/request'
export function appUserInfo() {
return request({
url: '/app/user/appUserInfo',
method: 'get'
method: 'get',
baseUrlType: 'user' // 使用用户接口专用baseUrl
})
}