浏览代码

取消请求权限接口的await

cxmo 7 月之前
父节点
当前提交
7c23b247a9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main.js

+ 1 - 1
src/main.js

@@ -220,7 +220,7 @@ router.beforeEach(async(to, from, next) => {
       window._hmt.push(["_trackPageview", "/#" + to.fullPath]);
     }
     //获取权限按钮
-    to.path != "/login"&&to.path!='/temppage'&&await store.dispatch('getPermissionButtons')
+    to.path != "/login"&&to.path!='/temppage'&&store.dispatch('getPermissionButtons')
     next();
   } else {
     next({ path: "/404" });