From 826cfc4e634302fb0cc01916f97bc515d150e007 Mon Sep 17 00:00:00 2001
From: h_mo <596417202@qq.com>
Date: Wed, 30 Nov 2022 23:05:40 +0800
Subject: [PATCH] wip-navbar component
---
src/components/Navbar/index.vue | 68 +++++++++++++++++++++++++--------
src/hooks/useGlobalStyle.ts | 20 ++++++++++
src/pages.json | 5 ++-
3 files changed, 77 insertions(+), 16 deletions(-)
create mode 100644 src/hooks/useGlobalStyle.ts
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,
+ );
-
-
+
+
@@ -29,17 +56,22 @@
class="navbar-wrapper _u_flex _u_flex-nowrap _u_justify-between _u_items-center"
>
left
+ left
+
标题
+
+ {{ navbarTitle }}
+
+
right
+
+
@@ -48,13 +80,19 @@