mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
wip-Navbar
This commit is contained in:
parent
0c54ae6775
commit
63a1808f98
@ -1,6 +1,6 @@
|
|||||||
<script lang="ts" setup name="AppProvider"></script>
|
<script lang="ts" setup name="AppProvider"></script>
|
||||||
<template>
|
<template>
|
||||||
<view class="_u_p-safe _u_bg-blue-500">
|
<view class="_u_bg-blue-500">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
15
src/components/Navbar/index.vue
Normal file
15
src/components/Navbar/index.vue
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<script lang="ts" setup name="Navbar"></script>
|
||||||
|
<template>
|
||||||
|
<view class="navbar-wrapper _u_bg-lime-400">
|
||||||
|
<!-- 顶部状态栏 S-->
|
||||||
|
<view class="status-bar"></view>
|
||||||
|
<!-- 顶部状态栏 E-->
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.navbar-wrapper {
|
||||||
|
.status-bar {
|
||||||
|
height: var(--status-bar-height);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -3,7 +3,8 @@
|
|||||||
{
|
{
|
||||||
"path": "pages/index/index",
|
"path": "pages/index/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "首页"
|
"navigationBarTitleText": "首页",
|
||||||
|
"navigationStyle":"custom"
|
||||||
},
|
},
|
||||||
"meta": {
|
"meta": {
|
||||||
"ignoreAuth": true
|
"ignoreAuth": true
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
import { CURRENT_PLATFORM, PLATFORMS } from '@/enums/platformEnum';
|
import { CURRENT_PLATFORM, PLATFORMS } from '@/enums/platformEnum';
|
||||||
import { judgePlatform } from '@/utils/platform';
|
import { judgePlatform } from '@/utils/platform';
|
||||||
import Iconify from '@/components/Iconify/index.vue';
|
import Iconify from '@/components/Iconify/index.vue';
|
||||||
|
import Navbar from '@/components/Navbar/index.vue';
|
||||||
|
|
||||||
const title = ref('uni-app vue3 ts --Vite');
|
const title = ref('uni-app vue3 ts --Vite');
|
||||||
|
|
||||||
@ -20,6 +21,7 @@
|
|||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<AppProvider>
|
<AppProvider>
|
||||||
|
<Navbar />
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<image class="logo" src="/static/svg/LOGO.svg" />
|
<image class="logo" src="/static/svg/LOGO.svg" />
|
||||||
<view class="text-area">
|
<view class="text-area">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user