@@ -155,7 +155,11 @@ router.beforeEach(async (to, from, next) => {
}
next()
} else {
- next(`/login`)
+ if(to.path === '/file'){
+ next()
+ }else{
+ next(`/login`)
+ }
NProgress.done()