|
@@ -10,6 +10,7 @@
|
|
*/
|
|
*/
|
|
import { createRouter, createWebHistory } from "vue-router";
|
|
import { createRouter, createWebHistory } from "vue-router";
|
|
import {useCachedViewsStore} from '@/store/modules/cachedViews'
|
|
import {useCachedViewsStore} from '@/store/modules/cachedViews'
|
|
|
|
+import {useAuthBtnStore} from '@/store/modules/authBtn'
|
|
|
|
|
|
import { pptRoutes } from "./ppt";
|
|
import { pptRoutes } from "./ppt";
|
|
import {pptENRoutes} from './pptEn'
|
|
import {pptENRoutes} from './pptEn'
|
|
@@ -18,6 +19,7 @@ import {reportRoutes} from './report'
|
|
import {reportEnRoutes} from './reportEn'
|
|
import {reportEnRoutes} from './reportEn'
|
|
import {chartETARoutes} from './chartETA'
|
|
import {chartETARoutes} from './chartETA'
|
|
import {dataEDBRoutes} from './dataEDB'
|
|
import {dataEDBRoutes} from './dataEDB'
|
|
|
|
+import { storeToRefs } from "pinia";
|
|
|
|
|
|
const routes = [
|
|
const routes = [
|
|
{
|
|
{
|
|
@@ -113,9 +115,10 @@ function setKeeplive(to){
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-router.beforeEach((to, from, next) => {
|
|
|
|
|
|
+router.beforeEach(async(to, from, next) => {
|
|
setKeeplive(to)
|
|
setKeeplive(to)
|
|
-
|
|
|
|
|
|
+ const authBtnStore = useAuthBtnStore()
|
|
|
|
+ to.path!='/login'&&await authBtnStore.getAuthList()
|
|
document.title = to.meta.title;
|
|
document.title = to.meta.title;
|
|
next();
|
|
next();
|
|
});
|
|
});
|