从A页面跳转的所有页面都无法滚动,刷新后就可以

原来在A页面设置了弹窗弹出时禁止页面滚动,弹窗消失恢复滚动

跳转按钮设置在在弹窗上,弹窗未消失就跳转,未能恢复滚动

 1 toProject() {
 2   //关闭弹窗
 3   this.ModelShow = false;
 4   //稍延迟后跳转
 5   setTimeout(() => {
 6     this.$router.push({
 7       path: "/project"
 8     });
 9   }, 100);
10 },

 

posted @ 2019-07-28 15:14  绿谷  阅读(546)  评论(0编辑  收藏  举报