From 20b1f94d55c514e8552ccd0a3f9a1def7f24b6ef Mon Sep 17 00:00:00 2001 From: hajimi Date: Mon, 3 Aug 2026 03:44:48 +0800 Subject: [PATCH] feat: align match detail tabs with design --- uniapp/src/pages/match_detail/match_detail.vue | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/uniapp/src/pages/match_detail/match_detail.vue b/uniapp/src/pages/match_detail/match_detail.vue index 3e32903..43564e5 100644 --- a/uniapp/src/pages/match_detail/match_detail.vue +++ b/uniapp/src/pages/match_detail/match_detail.vue @@ -528,15 +528,13 @@ const liveSourceText = computed(() => { }) const tabList = [ - { key: 'live', label: '文字直播' }, - { key: 'data', label: '比赛数据' }, - { key: 'odds', label: '盘口' }, - { key: 'lineup', label: '阵容' }, - { key: 'recent', label: '近期战绩' }, - { key: 'ai', label: 'AI分析' }, + { key: 'live', label: '聊天室' }, + { key: 'data', label: '赛况' }, + { key: 'odds', label: '数据' }, + { key: 'recent', label: '相关资讯' }, ] const showLegacyMatchOdds = false -const activeTab = ref('live') +const activeTab = ref('data') const lineupList = ref([]) const homeStarters = computed(() => lineupList.value.filter((p: any) => p.team_side === 1 && p.is_starter === 1)) const homeSubs = computed(() => lineupList.value.filter((p: any) => p.team_side === 1 && p.is_starter === 0))