deploy: auto commit repo-root changes 2026-07-03 22:36:29
This commit is contained in:
@@ -36,14 +36,14 @@ const parseNumber = (value: any) => {
|
||||
const applyState = () => {
|
||||
currentView.value = props.initialView
|
||||
worldcupState.value = {
|
||||
tab: String(props.routeOptions?.tab || 'schedule'),
|
||||
tab: String(props.routeOptions?.tab || 'live'),
|
||||
cid: parseNumber(props.routeOptions?.cid)
|
||||
}
|
||||
}
|
||||
|
||||
const openWorldCup = (payload?: { tab?: string; cid?: number | null }) => {
|
||||
worldcupState.value = {
|
||||
tab: payload?.tab || 'schedule',
|
||||
tab: payload?.tab || 'live',
|
||||
cid: payload?.cid ?? null
|
||||
}
|
||||
currentView.value = 'worldcup'
|
||||
@@ -56,7 +56,7 @@ const showMatchCenter = () => {
|
||||
const resetToWorldCup = () => {
|
||||
currentView.value = 'worldcup'
|
||||
worldcupState.value = {
|
||||
tab: String(props.routeOptions?.tab || 'schedule'),
|
||||
tab: String(props.routeOptions?.tab || 'live'),
|
||||
cid: parseNumber(props.routeOptions?.cid)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -72,9 +72,9 @@
|
||||
</view>
|
||||
<view class="worldcup-live-card__stats">
|
||||
<text class="worldcup-live-card__stat">观看 {{ formatLiveCount(live.room_view_count)
|
||||
}}</text>
|
||||
}}</text>
|
||||
<text class="worldcup-live-card__stat">关注 {{ formatLiveCount(live.room_focus_count)
|
||||
}}</text>
|
||||
}}</text>
|
||||
</view>
|
||||
<text class="worldcup-live-card__notice">{{ liveRoomNotice(live) }}</text>
|
||||
</view>
|
||||
@@ -159,9 +159,9 @@
|
||||
<view class="bracket-stage__card" @tap="goMatchDetail(match)">
|
||||
<view class="bracket-stage__time">
|
||||
<text class="bracket-stage__clock">{{ formatMatchTime(match.match_time)
|
||||
}}</text>
|
||||
}}</text>
|
||||
<text class="bracket-stage__date">{{ formatBracketDate(match.match_time)
|
||||
}}</text>
|
||||
}}</text>
|
||||
</view>
|
||||
<view class="bracket-stage__divider"></view>
|
||||
<view class="bracket-stage__teams">
|
||||
@@ -199,9 +199,9 @@
|
||||
<view class="bracket-stage__card" @tap="goMatchDetail(match)">
|
||||
<view class="bracket-stage__time">
|
||||
<text class="bracket-stage__clock">{{ formatMatchTime(match.match_time)
|
||||
}}</text>
|
||||
}}</text>
|
||||
<text class="bracket-stage__date">{{ formatBracketDate(match.match_time)
|
||||
}}</text>
|
||||
}}</text>
|
||||
</view>
|
||||
<view class="bracket-stage__divider"></view>
|
||||
<view class="bracket-stage__teams">
|
||||
@@ -816,7 +816,7 @@ const matchMetaText = (match: any, index: number) => {
|
||||
const initViewState = async () => {
|
||||
initLayout()
|
||||
|
||||
const legacyTab = String(props.initialTab || 'schedule')
|
||||
const legacyTab = String(props.initialTab || 'live')
|
||||
await resolveNewsCategoryId(props.initialCid)
|
||||
if (legacyTab === 'live') {
|
||||
activeTab.value = 'live'
|
||||
|
||||
Reference in New Issue
Block a user