| 12345678910111213141516171819202122232425 |
- <template>
- <view class="ezy-ziliao-page">
- <view class="icon-title-navBar-box">
- <text class="nav-bar-title">资料</text>
- </view>
- <view class="ezy-page-body">
-
- </view>
- </view>
- <custom-tab-bar :show="true" :current-index="currentTabIndex" />
- </template>
- <script setup>
- import {reactive, ref} from "vue";
- import {onLoad,onShow} from "@dcloudio/uni-app"
- import CustomTabBar from "@/components/custom-tabbar/index.vue";
- let currentTabIndex = ref(2);
- onLoad(() => {
- // 隐藏默认系统导航栏显示自定义导航栏
- uni.hideTabBar()
- })
- </script>
- <style>
- </style>
|