Uniapp自定义启动页

manifest.json中设置

"splashscreen" : {
     "autoclose" : false,
},

app.vue

		onLaunch: function() {
			if (uni.getStorageSync('userInfo')) {
				uni.reLaunch({
					url: '/pages/index/index',
					success() {
						plus.navigator.closeSplashscreen()
					}
				})
			} else {
				uni.reLaunch({
					url: '/pages/login/index',
					success() {
						plus.navigator.closeSplashscreen()
					}
				})
			}
		},

参考文章

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐