修改菜单栏重复点击console会显示bug , 以及行政地区不回显问题

This commit is contained in:
lemon橪
2022-03-04 15:12:37 +08:00
parent 2dac958227
commit 33bb16a0d3
4 changed files with 52 additions and 15 deletions

View File

@@ -13,6 +13,14 @@ const RouterConfig = {
routes: routers
};
/**
* 解决重复点击菜单会控制台报错bug
*/
const routerPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return routerPush.call(this, location).catch(error=> error)
}
export const router = new VueRouter(RouterConfig);
router.beforeEach((to, from, next) => {
@@ -44,3 +52,5 @@ router.afterEach((to) => {
ViewUI.LoadingBar.finish();
window.scrollTo(0, 0);
});