|
|
@ -1,5 +1,6 @@ |
|
|
|
<script setup lang="ts"> |
|
|
|
import Exit from 'components/exit/index.vue' |
|
|
|
import { useActivateDebug } from 'hooks/useActivateDebug' |
|
|
|
import { isClose } from 'libs/socket' |
|
|
|
import { formatDateTime } from 'libs/utils' |
|
|
|
import { authRoutes } from 'router/routes' |
|
|
@ -7,6 +8,8 @@ import { useSystemStore } from 'stores/systemStore' |
|
|
|
import { onUnmounted, ref } from 'vue' |
|
|
|
import { useRouter } from 'vue-router' |
|
|
|
|
|
|
|
const { handleLogoClick } = useActivateDebug() |
|
|
|
|
|
|
|
const systemStore = useSystemStore() |
|
|
|
const router = useRouter() |
|
|
|
|
|
|
@ -31,8 +34,8 @@ const onExitHandle = () => { |
|
|
|
<el-container class="main"> |
|
|
|
<el-header class="header"> |
|
|
|
<div class="logo"> |
|
|
|
<img src="../assets/images/logo.svg" alt=""> |
|
|
|
<span class="title">长春黄金研究院有限公司</span> |
|
|
|
<img src="../assets/images/logo.svg" alt="" @click="handleLogoClick"> |
|
|
|
<span class="title" @click="handleLogoClick">长春黄金研究院有限公司</span> |
|
|
|
<img :class="systemStore.menuExpand ? 'expand-icon' : 'fold-icon'" src="../assets/images/expand.svg" alt="" @click="systemStore.updateMenuExpand()"> |
|
|
|
</div> |
|
|
|
<div class="header-right"> |
|
|
|