12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view>
- <view class="icon-title-navBar-box">
- <view @click="goUpPage" class="nav-bar-icon"></view>
- <text class="nav-bar-title">详情</text>
- </view>
- <view>
- asdfasdfasdfasdfas
- </view>
- <!-- <CustomTabBar :currentTabNumber="1"></CustomTabBar> -->
- </view>
- </template>
- <script setup>
- import {
- toast,
- getUserIdentity
- } from "@/utils/common";
- import cacheManager from '@/utils/cacheManager.js';
- import {
- } from '@/api/zhuanti.js'
- import CustomTabBar from '@/components/custom-tabbar/custom-tabbar.vue';
- import {
- reactive,
- ref
- } from "vue";
- import {
- onLoad
- } from '@dcloudio/uni-app';
- const youkeFlag = ref(null);
- const yhName = ref(null);
- onLoad((options) => {
- console.log('opt', options);
- })
- function goUpPage() {
- uni.redirectTo({
- url: `/pages/zhuanti/index`
- })
- }
- </script>
|