diff --git a/src/components/NavMenu.vue b/src/components/NavMenu.vue index e3d90d4..969a852 100644 --- a/src/components/NavMenu.vue +++ b/src/components/NavMenu.vue @@ -282,7 +282,7 @@ const onNavMenu = (item: string) => { } } const onHome = () => { - router.push('/home') + router.push(useState().APPHOME.value) } const goTopPage = () => { const dom_body = document.getElementsByTagName('body')[0] diff --git a/src/hooks/config.ts b/src/hooks/config.ts index 2463692..b18ead7 100644 --- a/src/hooks/config.ts +++ b/src/hooks/config.ts @@ -24,6 +24,8 @@ export const set_config = (res: any) => { useState().URLKEY.value = res.URLKEY if (res && res.APPNAME) useState().APPNAME.value = res.APPNAME + if (res && res.APPHOME) + useState().APPHOME.value = res.APPHOME if (res && res.AUTHKEY) useState().AUTHKEY.value = res.AUTHKEY if (res && res.AUTH_SEPCHAR) diff --git a/src/hooks/useState.ts b/src/hooks/useState.ts index cbc7c18..ec84bc0 100644 --- a/src/hooks/useState.ts +++ b/src/hooks/useState.ts @@ -103,6 +103,7 @@ const current_model = ref({} as ModelType) const current_modelid = ref("") const APPNAME = ref('') +const APPHOME = ref('/') const AUTHKEY = ref('auth') const UUIDNONE = ref('none') const TKNLIMIT = ref(20) @@ -179,6 +180,7 @@ export default function useState() { // APP CONFIG VARS APPNAME, + APPHOME, AUTHKEY, UUIDNONE, TKNLIMIT, diff --git a/src/router.ts b/src/router.ts index fd9fe8d..544118b 100644 --- a/src/router.ts +++ b/src/router.ts @@ -74,6 +74,16 @@ const routes: RouteRecordRaw[] = [ }, beforeEnter: check_auth, }, + { + path: '/genadmin', + name: 'genadmin', + component: Home, + meta: { + ctx: 'home', + withauth: true, + }, + beforeEnter: check_auth, + }, { path: '/', name: 'Home',