diff --git a/frontend/src/components/account/AccountQuotaInfo.vue b/frontend/src/components/account/AccountQuotaInfo.vue index b639a7e2..4bc91be3 100644 --- a/frontend/src/components/account/AccountQuotaInfo.vue +++ b/frontend/src/components/account/AccountQuotaInfo.vue @@ -90,8 +90,8 @@ const tierLabel = computed(() => { return tierMap[creds?.tier_id || ''] || 'Personal' } - // AI Studio 或其他 - return 'Gemini' + // API Key: 显示 Client + return 'Client' }) // Tier Badge 样式 diff --git a/frontend/src/components/account/AccountUsageCell.vue b/frontend/src/components/account/AccountUsageCell.vue index 9b89fefc..1ce0f708 100644 --- a/frontend/src/components/account/AccountUsageCell.vue +++ b/frontend/src/components/account/AccountUsageCell.vue @@ -245,20 +245,18 @@

@@ -587,7 +585,7 @@ const geminiAuthTypeLabel = computed(() => { if (props.account.type !== 'oauth') return null if (oauthType === 'google_one') { - // Google One: show "G1" + tier + // Google One: show "Google One" + tier const tierMap: Record = { AI_PREMIUM: 'AI Premium', GOOGLE_ONE_STANDARD: 'Standard', @@ -597,16 +595,16 @@ const geminiAuthTypeLabel = computed(() => { GOOGLE_ONE_UNLIMITED: 'Unlimited' } const tierLabel = geminiTier.value ? tierMap[geminiTier.value] || 'Personal' : 'Personal' - return `G1 ${tierLabel}` + return `Google One ${tierLabel}` } else if (oauthType === 'code_assist' || (!oauthType && isGeminiCodeAssist.value)) { - // Code Assist: show "CLI" + tier + // Code Assist: show "GCP" + tier const tierMap: Record = { LEGACY: 'Free', PRO: 'Pro', ULTRA: 'Ultra' } const tierLabel = geminiTier.value ? tierMap[geminiTier.value] || 'Free' : 'Free' - return `CLI ${tierLabel}` + return `GCP ${tierLabel}` } else if (oauthType === 'ai_studio') { // AI Studio: just show "AI Studio" (no tier) return 'AI Studio'