fix(frontend): apply new-api-user endpoint reset to cookie_bundle capture branch

This commit is contained in:
liumangmang
2026-06-02 09:58:18 +08:00
parent b77ea21ca8
commit 0b1daf277b
+8
View File
@@ -482,6 +482,14 @@ function handleAuthCaptureSelect(candidate: {
form.value.auth_config.cookie_string = candidate.value
if (candidate.new_api_user) {
form.value.auth_config.new_api_user = candidate.new_api_user
form.value.api_prefix = ''
form.value.groups_endpoint = '/api/user/self/groups'
form.value.rate_endpoint = '/api/user/self/groups'
} else if (quickPlatform.value === 'new-api-user') {
form.value.api_prefix = ''
form.value.groups_endpoint = '/api/user/self/groups'
form.value.rate_endpoint = '/api/user/self/groups'
ElMessage.warning('已填入完整 Cookie 组,但未提取到 New-Api-User,请重新登录后再提取')
}
const countLabel = candidate.cookie_count ? `${candidate.cookie_count} 个 cookie` : ''
ElMessage.success(`已填入完整 Cookie 组${countLabel}`)