feat: align match detail tabs with odds design
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user