1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-07-29 05:50:41 +08:00

release: 发布 uni-halo beta-v2.0 版本

This commit is contained in:
小莫唐尼
2024-05-20 01:27:15 +08:00
parent a81c506a14
commit 057a7cf6f0
49 changed files with 2696 additions and 2531 deletions
+29 -24
View File
@@ -3,29 +3,34 @@
</template>
<script>
export default {
onLoad() {
this.fnCheckShowStarted();
},
methods: {
// 检查是否需要跳转到启动页
fnCheckShowStarted() {
if (!getApp().globalData.start.use) {
uni.switchTab({
url: '/pages/tabbar/home/home'
});
return;
}
if (uni.getStorageSync('APP_HAS_STARTED')) {
uni.switchTab({
url: '/pages/tabbar/home/home'
});
} else {
uni.redirectTo({
url: '/pagesA/start/start'
});
export default {
onLoad() {
this.fnCheckShowStarted();
},
methods: {
// 检查是否需要跳转到启动页
fnCheckShowStarted() {
if (!getApp().globalData.start.use) {
uni.switchTab({
// url: '/pages/tabbar/home/home'
url: '/pages/tabbar/moments/moments'
});
return;
}
if (uni.getStorageSync('APP_HAS_STARTED')) {
uni.switchTab({
// url: '/pages/tabbar/home/home'
url: '/pages/tabbar/moments/moments'
});
// uni.navigateTo({
// url: '/pagesA/friend-links/friend-links'
// });
} else {
uni.redirectTo({
url: '/pagesA/start/start'
});
}
}
}
}
};
</script>
};
</script>