zhuantiInfo.vue 841 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view>
  3. <view class="icon-title-navBar-box">
  4. <view @click="goUpPage" class="nav-bar-icon"></view>
  5. <text class="nav-bar-title">详情</text>
  6. </view>
  7. <view>
  8. asdfasdfasdfasdfas
  9. </view>
  10. <!-- <CustomTabBar :currentTabNumber="1"></CustomTabBar> -->
  11. </view>
  12. </template>
  13. <script setup>
  14. import {
  15. toast,
  16. getUserIdentity
  17. } from "@/utils/common";
  18. import cacheManager from '@/utils/cacheManager.js';
  19. import {
  20. } from '@/api/zhuanti.js'
  21. import CustomTabBar from '@/components/custom-tabbar/custom-tabbar.vue';
  22. import {
  23. reactive,
  24. ref
  25. } from "vue";
  26. import {
  27. onLoad
  28. } from '@dcloudio/uni-app';
  29. const youkeFlag = ref(null);
  30. const yhName = ref(null);
  31. onLoad((options) => {
  32. console.log('opt', options);
  33. })
  34. function goUpPage() {
  35. uni.redirectTo({
  36. url: `/pages/zhuanti/index`
  37. })
  38. }
  39. </script>