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))