feat: align match detail tabs with odds design

This commit is contained in:
hajimi
2026-08-03 03:46:35 +08:00
parent 49b8ba6c19
commit b32df18219
@@ -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<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))