feat(support-activity): mount VerticalProgressBar on activity page

This commit is contained in:
zerosaturation 2026-06-02 21:58:37 +08:00
parent a8777cb1ad
commit 29173ca55e

View File

@ -21,6 +21,13 @@
@tap="openRankingModal"
/>
<!-- 竖向进度条fixed 定位左侧 -->
<VerticalProgressBar
v-if="progressData.target > 0"
:current="progressData.current"
:target="progressData.target"
/>
<!-- 实时贡献列表 -->
<ContributionList
v-if="activityId && !isLoading"
@ -126,6 +133,7 @@ import performanceMonitor from '@/utils/performance-monitor'
import Header from '../components/Header.vue';
import BottomNav from '../components/BottomNav.vue';
import ThemeBanner from './components/ThemeBanner.vue'
import VerticalProgressBar from './components/VerticalProgressBar.vue'
import ContributionList from './components/ContributionList.vue'
import StageArea from './components/StageArea.vue'
import FloatingBubbles from './components/FloatingBubbles.vue'