mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
wip-navbar component
This commit is contained in:
parent
17e3cc46de
commit
826cfc4e63
@ -2,9 +2,21 @@
|
|||||||
import { useSystem } from '@/hooks/useSystem';
|
import { useSystem } from '@/hooks/useSystem';
|
||||||
import { px2rpx } from '@/utils/uniapi';
|
import { px2rpx } from '@/utils/uniapi';
|
||||||
import { computed, ref } from 'vue';
|
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({
|
const props = defineProps({
|
||||||
bgColor: { type: String },
|
bgColor: { type: String },
|
||||||
|
title: { type: String },
|
||||||
|
titleColor: { type: String },
|
||||||
gap: { type: [String, Number], default: 24 },
|
gap: { type: [String, Number], default: 24 },
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -18,10 +30,25 @@
|
|||||||
() => `${px2rpx((statusBarHeight || 0) + defaultNavbarHeight.value)}rpx`,
|
() => `${px2rpx((statusBarHeight || 0) + defaultNavbarHeight.value)}rpx`,
|
||||||
);
|
);
|
||||||
const sideGap = computed(() => `${props.gap}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,
|
||||||
|
);
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<view class="head-wrapper _u_bg-lime-400">
|
<view class="head-wrapper">
|
||||||
<view class="_u_head-fixed">
|
<view class="page-head _u_head-fixed">
|
||||||
<!-- 顶部状态栏 -->
|
<!-- 顶部状态栏 -->
|
||||||
<view class="status-bar"></view>
|
<view class="status-bar"></view>
|
||||||
<!-- navbar -->
|
<!-- navbar -->
|
||||||
@ -29,17 +56,22 @@
|
|||||||
class="navbar-wrapper _u_flex _u_flex-nowrap _u_justify-between _u_items-center"
|
class="navbar-wrapper _u_flex _u_flex-nowrap _u_justify-between _u_items-center"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
class="_u_flex _u_flex-row-reverse _u_justify-flex-start _u_items-center _u_h-full"
|
class="_u_flex _u_flex-nowrap _u_justify-flex-start _u_items-center _u_h-full _u_w3/10 _u_min-w3/10"
|
||||||
>left</view
|
|
||||||
>
|
>
|
||||||
|
<slot name="left">left</slot>
|
||||||
|
</view>
|
||||||
<view
|
<view
|
||||||
class="_u_flex _u_flex-row-reverse _u_justify-center _u_items-center _u_h-full _u_w2/5 _u_min-w2/5"
|
class="navbar__center _u_flex _u_flex-nowrap _u_justify-center _u_items-center _u_h-full _u_w2/5 _u_min-w2/5"
|
||||||
><text>标题</text></view
|
|
||||||
>
|
>
|
||||||
|
<slot>
|
||||||
|
<text>{{ navbarTitle }}</text>
|
||||||
|
</slot>
|
||||||
|
</view>
|
||||||
<view
|
<view
|
||||||
class="_u_flex _u_flex-row-reverse _u_justify-flex-end _u_items-center _u_h-full"
|
class="_u_flex _u_flex-nowrap _u_justify-flex-end _u_items-center _u_h-full _u_w3/10 _u_min-w3/10"
|
||||||
>right</view
|
|
||||||
>
|
>
|
||||||
|
<slot name="right"></slot>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- 占位符 -->
|
<!-- 占位符 -->
|
||||||
@ -48,13 +80,19 @@
|
|||||||
</template>
|
</template>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.head-wrapper {
|
.head-wrapper {
|
||||||
.status-bar {
|
.page-head {
|
||||||
height: v-bind(statusHeight);
|
background: v-bind(navbarBgColor);
|
||||||
}
|
.status-bar {
|
||||||
.navbar-wrapper {
|
height: v-bind(statusHeight);
|
||||||
height: v-bind(navbarHeight);
|
}
|
||||||
padding-left: v-bind(sideGap);
|
.navbar-wrapper {
|
||||||
padding-right: v-bind(sideGap);
|
height: v-bind(navbarHeight);
|
||||||
|
padding-left: v-bind(sideGap);
|
||||||
|
padding-right: v-bind(sideGap);
|
||||||
|
.navbar__center {
|
||||||
|
color: v-bind(navbarTitleColor);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&,
|
&,
|
||||||
.placeholder {
|
.placeholder {
|
||||||
|
20
src/hooks/useGlobalStyle.ts
Normal file
20
src/hooks/useGlobalStyle.ts
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import pagesJson from '@/pages.json';
|
||||||
|
|
||||||
|
const { globalStyle } = pagesJson;
|
||||||
|
/**
|
||||||
|
* 全局样式
|
||||||
|
*/
|
||||||
|
export const useGlobalStyle = () => {
|
||||||
|
const {
|
||||||
|
navigationBarTextStyle,
|
||||||
|
navigationBarTitleText,
|
||||||
|
navigationBarBackgroundColor,
|
||||||
|
backgroundColor,
|
||||||
|
} = globalStyle;
|
||||||
|
return {
|
||||||
|
navigationBarTextStyle,
|
||||||
|
navigationBarTitleText,
|
||||||
|
navigationBarBackgroundColor,
|
||||||
|
backgroundColor,
|
||||||
|
};
|
||||||
|
};
|
@ -88,7 +88,10 @@
|
|||||||
"navigationBarTextStyle": "black",
|
"navigationBarTextStyle": "black",
|
||||||
"navigationBarTitleText": "uni-app",
|
"navigationBarTitleText": "uni-app",
|
||||||
"navigationBarBackgroundColor": "#F8F8F8",
|
"navigationBarBackgroundColor": "#F8F8F8",
|
||||||
"backgroundColor": "#F8F8F8"
|
"backgroundColor": "#F8F8F8",
|
||||||
|
"navigationStyle": "default",
|
||||||
|
"renderingMode": "seperated",
|
||||||
|
"pageOrientation": "portrait"
|
||||||
},
|
},
|
||||||
"tabBar": {
|
"tabBar": {
|
||||||
"color": "#474747",
|
"color": "#474747",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user