index.vue 541 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view>
  3. <CustomTabBar :currentTabNumber="1"></CustomTabBar>
  4. </view>
  5. </template>
  6. <script setup>
  7. import {
  8. toast,
  9. getUserIdentity
  10. } from "@/utils/common";
  11. import cacheManager from '@/utils/cacheManager.js';
  12. import {
  13. } from '@/api/zhuanti.js'
  14. import CustomTabBar from '@/components/custom-tabbar/custom-tabbar.vue';
  15. import {
  16. onLoad
  17. } from '@dcloudio/uni-app';
  18. import {
  19. reactive,
  20. ref
  21. } from "vue";
  22. import {
  23. onShow
  24. } from '@dcloudio/uni-app';
  25. onShow(() => {
  26. })
  27. const agreeType = ref(null);
  28. </script>