index.vue 582 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="ezy-ziliao-page">
  3. <view class="icon-title-navBar-box">
  4. <text class="nav-bar-title">资料</text>
  5. </view>
  6. <view class="ezy-page-body">
  7. </view>
  8. </view>
  9. <custom-tab-bar :show="true" :current-index="currentTabIndex" />
  10. </template>
  11. <script setup>
  12. import {reactive, ref} from "vue";
  13. import {onLoad,onShow} from "@dcloudio/uni-app"
  14. import CustomTabBar from "@/components/custom-tabbar/index.vue";
  15. let currentTabIndex = ref(2);
  16. onLoad(() => {
  17. // 隐藏默认系统导航栏显示自定义导航栏
  18. uni.hideTabBar()
  19. })
  20. </script>
  21. <style>
  22. </style>