buddhism/components/custom-navbar/custom-navbar.vue

233 lines
5.2 KiB
Vue
Raw Normal View History

<template>
<view>
<!-- 填充区避免内容被导航栏遮挡 -->
2025-09-16 13:49:39 +08:00
<view
:style="{ height: navBarHeight + 'px' }"
class="navbar-placeholder"
></view>
2025-08-14 11:22:53 +08:00
<!-- 自定义导航栏 -->
2025-08-14 11:22:53 +08:00
<view
2025-08-07 17:30:36 +08:00
:class="{ 'navbar-scrolled': isScrolled }"
2025-08-14 11:22:53 +08:00
:style="{
paddingTop: statusBarHeight + 'px',
2025-08-07 17:30:36 +08:00
height: navBarHeight + 'px',
2025-08-14 11:22:53 +08:00
backgroundColor: isScrolled ? backgroundColor : 'transparent',
2025-08-07 17:30:36 +08:00
}"
2025-08-14 11:22:53 +08:00
class="custom-navbar"
2025-08-07 17:30:36 +08:00
>
2025-08-14 11:22:53 +08:00
<view
2025-09-16 13:49:39 +08:00
:style="{
height: capsuleHeight + 'px',
lineHeight: capsuleHeight + 'px',
}"
2025-08-14 11:22:53 +08:00
class="navbar-left"
@click="handleBack"
>
<image :src="backIcon" class="back-icon" mode="aspectFit"></image>
</view>
<view
2025-09-16 13:49:39 +08:00
:style="{
height: capsuleHeight + 'px',
lineHeight: capsuleHeight + 'px',
}"
2025-08-14 11:22:53 +08:00
class="navbar-title"
>{{ title }}
</view>
2025-08-14 11:22:53 +08:00
<view
2025-09-16 13:49:39 +08:00
:style="{
height: capsuleHeight + 'px',
lineHeight: capsuleHeight + 'px',
}"
2025-08-14 11:22:53 +08:00
class="navbar-right"
>
<slot name="right"></slot>
</view>
</view>
</view>
</template>
<script>
2025-09-16 13:49:39 +08:00
import CommonEnum from "../../enum/common";
export default {
name: "CustomNavbar",
props: {
title: {
type: String,
default: "",
},
2025-09-16 13:49:39 +08:00
backIcon: {
type: String,
default: CommonEnum.BACK_BUTTON,
},
showBack: {
type: Boolean,
default: true,
},
// 新增:滚动相关配置
backgroundColor: {
type: String,
default: CommonEnum.BASE_COLOR, // 滚动时的背景色,使用基调颜色
2025-08-07 17:30:36 +08:00
},
2025-09-16 13:49:39 +08:00
scrollThreshold: {
type: Number,
default: 20, // 滚动阈值,超过此值开始变色
2025-08-14 11:22:53 +08:00
},
2025-09-16 13:49:39 +08:00
enableScrollEffect: {
type: Boolean,
default: true, // 是否启用滚动效果
},
},
data() {
return {
statusBarHeight: 0,
navBarHeight: 0,
menuButtonInfo: null,
capsuleHeight: 0,
// 新增:滚动状态
isScrolled: false,
scrollTop: 0,
lastScrollTop: 0,
};
},
mounted() {
this.getSystemInfo();
},
methods: {
getSystemInfo() {
// 获取系统信息
const systemInfo = uni.getSystemInfoSync();
// 获取状态栏高度
this.statusBarHeight = systemInfo.statusBarHeight;
// 获取胶囊按钮信息
this.menuButtonInfo = uni.getMenuButtonBoundingClientRect();
// 计算胶囊高度
this.capsuleHeight = this.menuButtonInfo.height;
// 计算导航栏高度(胶囊底部到状态栏顶部的距离)
this.navBarHeight = this.menuButtonInfo.bottom + 8;
},
handleBack() {
if (this.showBack) {
// 先触发自定义事件,让父组件有机会处理
this.$emit("back");
// 自动执行返回逻辑
uni.navigateBack({
delta: 1,
2025-10-17 17:38:09 +08:00
fail: () => {
// 如果没有上一页,跳转到首页
uni.reLaunch({
url: "/pages/index/index", // 确保路径正确
});
},
2025-09-16 13:49:39 +08:00
});
}
},
// 新增:处理页面滚动(供父组件调用)
handlePageScroll(e) {
if (!this.enableScrollEffect) return;
this.scrollTop = e.scrollTop;
// 判断是否超过滚动阈值
if (this.scrollTop > this.scrollThreshold) {
if (!this.isScrolled) {
this.isScrolled = true;
this.$emit("scroll-change", {
isScrolled: true,
scrollTop: this.scrollTop,
});
2025-08-07 17:30:36 +08:00
}
2025-09-16 13:49:39 +08:00
} else {
if (this.isScrolled) {
this.isScrolled = false;
this.$emit("scroll-change", {
isScrolled: false,
scrollTop: this.scrollTop,
});
2025-08-07 17:30:36 +08:00
}
2025-09-16 13:49:39 +08:00
}
2025-08-14 11:22:53 +08:00
2025-09-16 13:49:39 +08:00
// 触发滚动事件,让父组件可以获取滚动信息
this.$emit("scroll", {
scrollTop: this.scrollTop,
isScrolled: this.isScrolled,
});
},
2025-08-14 11:22:53 +08:00
2025-09-16 13:49:39 +08:00
// 新增:手动设置滚动状态(供父组件调用)
setScrollState(scrollTop) {
if (!this.enableScrollEffect) return;
2025-08-14 11:22:53 +08:00
2025-09-16 13:49:39 +08:00
this.scrollTop = scrollTop;
this.isScrolled = scrollTop > this.scrollThreshold;
2025-08-07 17:30:36 +08:00
},
2025-09-16 13:49:39 +08:00
},
};
</script>
<style lang="scss" scoped>
2025-09-16 13:49:39 +08:00
/* 填充区样式 */
.navbar-placeholder {
width: 100%;
background-color: transparent;
}
/* 自定义导航栏样式 */
.custom-navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
padding-top: 0;
background-color: transparent;
display: flex;
align-items: center;
justify-content: space-between;
padding-left: 30rpx;
padding-right: 30rpx;
box-sizing: border-box;
transition: background-color 0.3s ease; /* 添加过渡动画 */
}
/* 滚动状态样式 */
.navbar-scrolled {
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1); /* 滚动时添加阴影 */
}
.navbar-left {
display: flex;
align-items: center;
justify-content: center;
width: 60rpx;
.back-icon {
width: 56rpx;
height: 56rpx;
}
2025-09-16 13:49:39 +08:00
}
.navbar-title {
font-size: 36rpx;
font-weight: bold;
color: #695347;
flex: 1;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.navbar-right {
width: 60rpx;
display: flex;
align-items: center;
justify-content: center;
}
2025-08-14 11:22:53 +08:00
</style>