diff --git a/src/components/Navbar/index.vue b/src/components/Navbar/index.vue index a5fa3dd..475b968 100644 --- a/src/components/Navbar/index.vue +++ b/src/components/Navbar/index.vue @@ -2,9 +2,21 @@ import { useSystem } from '@/hooks/useSystem'; import { px2rpx } from '@/utils/uniapi'; import { computed, ref } from 'vue'; + import { useRoute } from '@/hooks/router'; + import { useGlobalStyle } from '@/hooks/useGlobalStyle'; + + const { + navigationBarBackgroundColor, + navigationBarTitleText, + navigationBarTextStyle, + } = useGlobalStyle(); + + const { currentRoute } = useRoute(); const props = defineProps({ bgColor: { type: String }, + title: { type: String }, + titleColor: { type: String }, gap: { type: [String, Number], default: 24 }, }); @@ -18,10 +30,25 @@ () => `${px2rpx((statusBarHeight || 0) + defaultNavbarHeight.value)}rpx`, ); const sideGap = computed(() => `${props.gap}rpx`); + const navbarBgColor = computed( + () => props.bgColor || navigationBarBackgroundColor, + ); + const navbarTitle = computed( + () => + props.title || + currentRoute?.style?.navigationBarTitleText || + navigationBarTitleText, + ); + const navbarTitleColor = computed( + () => + props.titleColor || + currentRoute?.style?.navigationBarTextStyle || + navigationBarTextStyle, + );