From b32df182197e22fcf79795429bf11b17e753a8f1 Mon Sep 17 00:00:00 2001 From: hajimi Date: Mon, 3 Aug 2026 03:46:35 +0800 Subject: [PATCH] feat: align match detail tabs with odds design --- uniapp/src/pages/match_detail/match_detail.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/uniapp/src/pages/match_detail/match_detail.vue b/uniapp/src/pages/match_detail/match_detail.vue index 43564e5..f557a59 100644 --- a/uniapp/src/pages/match_detail/match_detail.vue +++ b/uniapp/src/pages/match_detail/match_detail.vue @@ -528,13 +528,14 @@ const liveSourceText = computed(() => { }) const tabList = [ - { key: 'live', label: '聊天室' }, - { key: 'data', label: '赛况' }, - { key: 'odds', label: '数据' }, - { key: 'recent', label: '相关资讯' }, + { key: 'data', label: '概览' }, + { key: 'live', label: '赛况' }, + { key: 'lineup', label: '数据' }, + { key: 'odds', label: '盘口对比' }, + { key: 'recent', label: '新闻' }, ] const showLegacyMatchOdds = false -const activeTab = ref('data') +const activeTab = ref('odds') 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))