index.vue 468 B

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