feat: 去掉导航栏、首页轮播全屏占屏1/3、场馆切换移至公告活动下方

- pages.json 全局设置 navigationStyle: custom 移除原生导航栏
- App.vue 全局 page 添加状态栏安全区 padding-top
- 综合场馆/冰场馆首页轮播图改为全屏模式(无圆角无边距、去除标题)
- 轮播图高度改为 33.33vh 占屏幕三分之一
- VenueSwitchHeader 从轮播图上方移至公告活动板块下方
- 合并 tabBar 页面路由、清理废弃组件 VenueTabBar
This commit is contained in:
gqt
2026-07-13 19:27:49 +08:00
parent 9b38518426
commit 5c97e8b1f8
30 changed files with 506 additions and 453 deletions
+42 -166
View File
@@ -10,63 +10,60 @@
/>
<block v-else>
<VenueSwitchHeader venue-name="冰场馆" />
<!-- 极简无感大图轮播 -->
<!-- 全屏轮播 -->
<view class="banner-wrapper">
<swiper
class="banner-swiper"
circular
autoplay
interval="4000"
<swiper
class="banner-swiper"
circular
autoplay
interval="4000"
duration="600"
indicator-dots
indicator-color="rgba(15, 23, 42, 0.1)"
indicator-active-color="#0F172A"
indicator-color="rgba(255, 255, 255, 0.4)"
indicator-active-color="#FFFFFF"
>
<swiper-item v-for="(banner, index) in banners" :key="index" @tap="onTapBanner(banner)">
<view class="banner-item">
<image :src="banner.image" mode="aspectFill" class="banner-img" />
<view class="banner-overlay">
<text class="banner-title">{{ banner.title }}</text>
</view>
</view>
</swiper-item>
</swiper>
</view>
<!-- 活动资讯版块 -->
<view class="section-container last-section">
<view class="section-header">
<text class="section-title">公告活动</text>
</view>
<!-- 内容区域 -->
<view class="content-wrapper">
<!-- 活动资讯版块 -->
<view class="section-container">
<view class="section-header">
<text class="section-title">公告活动</text>
</view>
<view class="activity-grid">
<view
v-for="activity in activities"
:key="activity.id"
class="activity-card"
@tap="navigateToDetail('/pages/ice/activities/detail?id=' + activity.id)"
>
<image :src="activity.cover" mode="aspectFill" class="activity-cover" />
<view class="activity-info">
<text class="activity-title">{{ activity.title }}</text>
<text class="activity-date">{{ formatDate(activity.created_at) }}</text>
<view class="activity-grid">
<view
v-for="activity in activities"
:key="activity.id"
class="activity-card"
@tap="navigateToDetail('/pages/ice/activities/detail?id=' + activity.id)"
>
<image :src="activity.cover" mode="aspectFill" class="activity-cover" />
<view class="activity-info">
<text class="activity-title">{{ activity.title }}</text>
<text class="activity-date">{{ formatDate(activity.created_at) }}</text>
</view>
</view>
</view>
</view>
<VenueSwitchHeader venue-name="冰场馆" />
</view>
</block>
<VenueTabBar venue="ice" active="home" />
</view>
</template>
<script setup>
import { ref, onMounted } from 'vue'
import { onPullDownRefresh } from '@dcloudio/uni-app'
import { homeApi } from '@/modules/ice/api/home'
import { errorMessage } from '@/modules/ice/api/session'
import VenueTabBar from '@/components/VenueTabBar.vue'
import VenueSwitchHeader from '@/components/VenueSwitchHeader.vue'
import StatePanel from '@/components/ice/StatePanel.vue'
@@ -83,12 +80,6 @@ onMounted(() => {
loadHome()
})
onPullDownRefresh(() => {
loadHome().finally(() => {
uni.stopPullDownRefresh()
})
})
const loadHome = async () => {
try {
const data = await homeApi.getHome({
@@ -120,56 +111,24 @@ const formatDate = (dateStr) => {
const date = new Date(dateStr)
return `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, '0')}-${String(date.getDate()).padStart(2, '0')}`
}
defineExpose({ refresh: loadHome })
</script>
<style lang="scss" scoped>
.home-container {
padding: $spacing-lg $spacing-md;
background-color: $bg-color-soft;
min-height: 100vh;
margin-top: calc(-1 * var(--status-bar-height, 0px));
}
/* 顶部场馆标题 */
.header-section {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: $spacing-lg;
padding: 0 4rpx;
.venue-info {
display: flex;
flex-direction: column;
}
.venue-title {
font-size: 38rpx;
font-weight: 700;
color: $text-color-main;
letter-spacing: -0.5rpx;
}
.venue-status-tag {
font-size: 20rpx;
color: $color-success;
font-weight: 500;
margin-top: $spacing-xs;
}
.today-date {
font-size: 24rpx;
color: $text-color-muted;
}
}
/* 无圆角,极简轮播 */
/* 全屏轮播 */
.banner-wrapper {
margin-bottom: $spacing-lg;
width: 100%;
.banner-swiper {
height: 320rpx;
border-radius: $border-radius-base;
overflow: hidden;
width: 100%;
height: 33.33vh;
}
.banner-item {
@@ -183,99 +142,16 @@ const formatDate = (dateStr) => {
height: 100%;
background-color: $bg-color-hover;
}
.banner-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
padding: $spacing-md;
display: flex;
align-items: flex-end;
}
.banner-title {
color: #FFFFFF;
font-size: 24rpx;
font-weight: 400;
line-height: 1.4;
}
}
/* 核心快捷卡片入口 */
.quick-entry-grid {
display: flex;
flex-direction: column;
gap: $spacing-md;
margin-bottom: $spacing-xl;
}
.entry-card {
display: flex;
align-items: center;
background: $bg-color-main;
border: 1rpx solid rgba(226, 232, 240, 0.8);
border-radius: $border-radius-base;
padding: $spacing-md $spacing-lg;
position: relative;
transition: all 0.2s ease;
&:active {
background-color: $bg-color-hover;
}
&.primary-entry {
border-color: rgba(14, 165, 233, 0.15);
background: linear-gradient(135deg, $bg-color-main 0%, #F0F9FF 100%);
.entry-num {
color: $color-primary;
}
}
.entry-icon-wrap {
margin-right: $spacing-lg;
}
.entry-num {
font-size: 32rpx;
font-weight: 700;
color: $text-color-light;
font-family: monospace;
}
.entry-text-wrap {
display: flex;
flex-direction: column;
flex: 1;
}
.entry-title {
font-size: 30rpx;
font-weight: 600;
color: $text-color-main;
}
.entry-desc {
font-size: 22rpx;
color: $text-color-muted;
margin-top: 4rpx;
}
.entry-arrow {
font-size: 32rpx;
color: $text-color-light;
}
/* 内容区域 */
.content-wrapper {
padding: $spacing-lg $spacing-md;
}
/* 板块通用头部 */
.section-container {
margin-bottom: $spacing-xl;
&.last-section {
margin-bottom: 0;
}
margin-bottom: $spacing-lg;
}
.section-header {
@@ -310,7 +186,7 @@ const formatDate = (dateStr) => {
}
}
/* 极简活动卡片(两列横向拼图排版) */
/* 极简活动卡片 */
.activity-grid {
display: grid;
grid-template-columns: 1fr 1;