feat: align match detail tabs with design

This commit is contained in:
hajimi
2026-08-03 03:44:48 +08:00
parent 3027314e50
commit 20b1f94d55
@@ -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<any[]>([])
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))