|
@@ -5,7 +5,7 @@ import manageRouter from './modules/manage'
|
|
|
import Temp404 from '@/views/global/temp/404.vue'
|
|
|
import {mockGetUserInfo, mockGetConfig} from "@/api/modules/mock/mock";
|
|
|
import {ElLoading, ElMessage} from "element-plus";
|
|
|
-import {useAppStore} from "@/stores";
|
|
|
+import {useAppStore, useThemeStore} from "@/stores";
|
|
|
import {toLogin} from "@/utils/permissions";
|
|
|
import initRootVar from "@/style/initRootVar";
|
|
|
|
|
@@ -24,8 +24,9 @@ const router = createRouter({
|
|
|
|
|
|
router.beforeEach((to, from , next) => {
|
|
|
const AppStore = useAppStore()
|
|
|
- if (themeConfig && !AppStore.theme.init) {
|
|
|
- AppStore.setTheme(themeConfig)
|
|
|
+ const ThemeStore = useThemeStore()
|
|
|
+ if (themeConfig && !ThemeStore.init) {
|
|
|
+ ThemeStore.setTheme(themeConfig)
|
|
|
}
|
|
|
if (userInfo) {
|
|
|
if (!AppStore.userInfo) {
|
|
@@ -36,7 +37,7 @@ router.beforeEach((to, from , next) => {
|
|
|
if (to.query.routeTitle) {
|
|
|
to.meta.title = to.query.routeTitle
|
|
|
}
|
|
|
- document.title = to.meta?.title || AppStore.theme.title || import.meta.env.VITE_TITLE
|
|
|
+ document.title = to.meta?.title || ThemeStore.title || import.meta.env.VITE_TITLE
|
|
|
next()
|
|
|
} else if (to.path === '/login') {
|
|
|
next()
|
|
@@ -76,7 +77,10 @@ export const initMainRouter = async () => {
|
|
|
mainColor: '#f82828',
|
|
|
logo: 'https://element-plus.org/images/element-plus-logo.svg',
|
|
|
title: '海南社管智慧搜索平台',
|
|
|
- subTitle: 'HAI NAN SHE GUAN ZHI HUI SOU SUO PING TAI'
|
|
|
+ subTitle: 'HAI NAN SHE GUAN ZHI HUI SOU SUO PING TAI',
|
|
|
+ // titleLogo: 'https://element-plus.org/images/element-plus-logo.svg',
|
|
|
+ // webBgImg: 'https://element-plus.org/images/element-plus-logo.svg',
|
|
|
+ loginImg: 'https://element-plus.org/images/element-plus-logo.svg',
|
|
|
}
|
|
|
initRootVar(themeConfig)
|
|
|
} else if (location.pathname !== '/login') {
|