feat: 将公开统计概览移至首页状态概览标签

- 在首页添加"状态概览"标签,作为默认显示页面
- 修复 PublicStatsOverview.vue 属性顺序 lint 错误
- 修复 LoginView.vue prettier 格式问题

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Chapoly1305
2025-12-23 17:30:00 +00:00
parent 82d1489a55
commit ab474c3322
3 changed files with 115 additions and 83 deletions

View File

@@ -27,7 +27,7 @@
class="platform-badge" class="platform-badge"
:class="{ available: available, unavailable: !available }" :class="{ available: available, unavailable: !available }"
> >
<i :class="getPlatformIcon(platform)" class="mr-1"></i> <i class="mr-1" :class="getPlatformIcon(platform)"></i>
<span>{{ getPlatformName(platform) }}</span> <span>{{ getPlatformName(platform) }}</span>
</div> </div>
</div> </div>

View File

@@ -6,7 +6,13 @@
<LogoTitle <LogoTitle
:loading="oemLoading" :loading="oemLoading"
:logo-src="oemSettings.siteIconData || oemSettings.siteIcon" :logo-src="oemSettings.siteIconData || oemSettings.siteIcon"
:subtitle="currentTab === 'stats' ? 'API Key 使用统计' : '使用教程'" :subtitle="
currentTab === 'stats'
? 'API Key 使用统计'
: currentTab === 'overview'
? '服务状态概览'
: '使用教程'
"
:title="oemSettings.siteName" :title="oemSettings.siteName"
/> />
<div class="flex items-center gap-2 md:gap-4"> <div class="flex items-center gap-2 md:gap-4">
@@ -49,6 +55,13 @@
<div <div
class="inline-flex w-full max-w-md rounded-full border border-white/20 bg-white/10 p-1 shadow-lg backdrop-blur-xl md:w-auto" class="inline-flex w-full max-w-md rounded-full border border-white/20 bg-white/10 p-1 shadow-lg backdrop-blur-xl md:w-auto"
> >
<button
:class="['tab-pill-button', currentTab === 'overview' ? 'active' : '']"
@click="switchToOverview"
>
<i class="fas fa-tachometer-alt mr-1 md:mr-2" />
<span class="text-sm md:text-base">状态概览</span>
</button>
<button <button
:class="['tab-pill-button', currentTab === 'stats' ? 'active' : '']" :class="['tab-pill-button', currentTab === 'stats' ? 'active' : '']"
@click="currentTab = 'stats'" @click="currentTab = 'stats'"
@@ -67,6 +80,13 @@
</div> </div>
</div> </div>
<!-- 状态概览内容 -->
<div v-if="currentTab === 'overview'" class="tab-content">
<div class="mx-auto max-w-2xl">
<PublicStatsOverview />
</div>
</div>
<!-- 统计内容 --> <!-- 统计内容 -->
<div v-if="currentTab === 'stats'" class="tab-content"> <div v-if="currentTab === 'stats'" class="tab-content">
<!-- API Key 输入区域 --> <!-- API Key 输入区域 -->
@@ -174,6 +194,7 @@ import { useRoute } from 'vue-router'
import { storeToRefs } from 'pinia' import { storeToRefs } from 'pinia'
import { useApiStatsStore } from '@/stores/apistats' import { useApiStatsStore } from '@/stores/apistats'
import { useThemeStore } from '@/stores/theme' import { useThemeStore } from '@/stores/theme'
import { useAuthStore } from '@/stores/auth'
import LogoTitle from '@/components/common/LogoTitle.vue' import LogoTitle from '@/components/common/LogoTitle.vue'
import ThemeToggle from '@/components/common/ThemeToggle.vue' import ThemeToggle from '@/components/common/ThemeToggle.vue'
import ApiKeyInput from '@/components/apistats/ApiKeyInput.vue' import ApiKeyInput from '@/components/apistats/ApiKeyInput.vue'
@@ -184,13 +205,15 @@ import AggregatedStatsCard from '@/components/apistats/AggregatedStatsCard.vue'
import ModelUsageStats from '@/components/apistats/ModelUsageStats.vue' import ModelUsageStats from '@/components/apistats/ModelUsageStats.vue'
import TutorialView from './TutorialView.vue' import TutorialView from './TutorialView.vue'
import ApiKeyTestModal from '@/components/apikeys/ApiKeyTestModal.vue' import ApiKeyTestModal from '@/components/apikeys/ApiKeyTestModal.vue'
import PublicStatsOverview from '@/components/common/PublicStatsOverview.vue'
const route = useRoute() const route = useRoute()
const apiStatsStore = useApiStatsStore() const apiStatsStore = useApiStatsStore()
const themeStore = useThemeStore() const themeStore = useThemeStore()
const authStore = useAuthStore()
// 当前标签页 // 当前标签页 - 默认显示状态概览
const currentTab = ref('stats') const currentTab = ref('overview')
// 主题相关 // 主题相关
const isDarkMode = computed(() => themeStore.isDarkMode) const isDarkMode = computed(() => themeStore.isDarkMode)
@@ -223,6 +246,12 @@ const closeTestModal = () => {
showTestModal.value = false showTestModal.value = false
} }
// 切换到状态概览并加载数据
const switchToOverview = () => {
currentTab.value = 'overview'
authStore.loadPublicStats()
}
// 处理键盘快捷键 // 处理键盘快捷键
const handleKeyDown = (event) => { const handleKeyDown = (event) => {
// Ctrl/Cmd + Enter 查询 // Ctrl/Cmd + Enter 查询
@@ -249,6 +278,9 @@ onMounted(() => {
// 加载 OEM 设置 // 加载 OEM 设置
loadOemSettings() loadOemSettings()
// 默认加载公开统计数据
authStore.loadPublicStats()
// 检查 URL 参数 // 检查 URL 参数
const urlApiId = route.query.apiId const urlApiId = route.query.apiId
const urlApiKey = route.query.apiKey const urlApiKey = route.query.apiKey