uniapp页面跳转时showToast不显示

showToast和页面跳转冲突

解决方法:定时器

uni.showToast({
    icon: 'none',
    position: 'bottom',
    title: '凭证上传成功'
});
setTimeout(function() {
    uni.reLaunch({
        url: '/pages/install/basicinfo'
    })
}, 1000);

猜你喜欢

转载自blog.csdn.net/starstarstarl/article/details/126365707
今日推荐