This commit is contained in:
2025-06-17 21:34:59 +08:00
parent 00a055685e
commit 6256cda8bc
17 changed files with 397 additions and 121 deletions

View File

@@ -15,8 +15,6 @@ router.beforeEach((to, from, next) => {
if (!isLogin && !to.path.includes('loginSYS')) {
next({path: '/loginSYS'});
} else {
SystemStore.NOW_ROUTER = to.path;
Object.assign(SystemStore.NOW_ROUTER_QUERY, to.query);
next();
}
});