25 lines
553 B
Vue
Raw Normal View History

2025-04-22 10:22:33 +08:00
<template>
<view class="wh-full">
<BasicLoading :isShow="isShow" bgColor="#fff" isShowTitle textColor="#000" title="启动中..." :type="1"/>
</view>
</template>
<script lang="ts" setup>
import {onShow} from "@dcloudio/uni-app";
import {isTabBar} from "@/utils/uniapp";
import pages from '@/pages.json'
const isShow = ref(true)
onShow(async () => {
if (isTabBar()) {
uni.switchTab({
url: '/' + (pages as any).tabBar.list[0].pagePath
})
} else {
uni.reLaunch({
url: '/' + pages.pages[1].path
})
}
})
</script>