uniapp跳转页面成功,点击确定按钮进行跳转,延迟跳转

一开始我使用这种方法,可以延迟2秒跳转,但不是我要的效果。

                                    uni.showModal({
									title:"登录成功",
									showCancel:false,
									})
								setTimeout(()=>{
									uni.switchTab({
										url:'../inventory/inventory',//跳转的页面
										success:function(e){
											var page = getCurrentPages()[0]
											if(page == null || page == undefined){
												return;
											}else{
												page.getOrderList('2');
											}
										}
									})
								},2000)

 我要他登录成功后弹出模态框,然后点击确定后再进行跳转。

                                uni.showModal({
									title:"登录成功",
									showCancel:false,
									success:function(){
										uni.switchTab({
												url:'../inventory/inventory',//跳转的页面
										})
									}
								})

这样就可uniapp跳转页面成功,点击确定按钮进行跳转,延迟跳转_第1张图片以实现了

 

 

你可能感兴趣的:(前端,javascript,html,uni-app)