From 5612bbd431d10589a06c7ed3584de2cad1b5ea0a Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: Thu, 18 Jun 2026 16:24:31 +0800
Subject: [PATCH] 中科大支线—订单入库
---
src/layout/components/Sidebar/Logo.vue | 37 +++++++++++++++++++++++++++++--------
1 files changed, 29 insertions(+), 8 deletions(-)
diff --git a/src/layout/components/Sidebar/Logo.vue b/src/layout/components/Sidebar/Logo.vue
index 7203c7f..5897980 100644
--- a/src/layout/components/Sidebar/Logo.vue
+++ b/src/layout/components/Sidebar/Logo.vue
@@ -1,12 +1,12 @@
<template>
<div class="sidebar-logo-container" :class="{ 'collapse': collapse }" :style="{ backgroundColor: sideTheme === 'theme-dark' ? variables.menuBackground : variables.menuLightBackground }">
<transition name="sidebarLogoFade">
- <router-link v-if="collapse" key="collapse" class="sidebar-logo-link" to="firstPage">
- <img v-if="logo" :src="logo" class="sidebar-logo" />
+ <router-link v-if="collapse" key="collapse" class="sidebar-logo-link" :to="permissionStore.indexPage">
+ <img v-if="logoImg" :src="logoImg" class="sidebar-logo" />
<h1 v-else class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }}</h1>
</router-link>
- <router-link v-else key="expand" class="sidebar-logo-link" :to="firstPage">
- <img v-if="logo" :src="logo" class="sidebar-logo" />
+ <router-link v-else key="expand" class="sidebar-logo-link" :to="permissionStore.indexPage">
+ <img v-if="logoImg" :src="logoImg" class="sidebar-logo" />
<h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }}</h1>
</router-link>
</transition>
@@ -17,6 +17,7 @@
import variables from '@/assets/styles/variables.module.scss'
import logo from '@/assets/logo/logo2.png'
import useSettingsStore from '@/store/modules/settings'
+import usePermissionStore from '@/store/modules/permission'
import {onMounted, ref} from "vue";
import Cookies from "js-cookie";
defineProps({
@@ -25,12 +26,32 @@
required: true
}
})
+const logoImg = ref('')
const firstPage = ref("");
onMounted(() => {
- const routers = JSON.parse(Cookies.get('routers')) ;
- firstPage.value = routers[0].path;
+ // const routers = JSON.parse(Cookies.get('routers')) ;
+ // if(routers[0].children){
+ // firstPage.value = routers[0].path + '/' + routers[0].children[0].path;
+ // }else {
+ // firstPage.value = routers[0].path;
+ // }
+ //
+ // console.log(routers,'firstPage.value')
+ console.log(firstPage.value,'firstPage.value')
+ if(Cookies.get('configInfo')){
+ const config = JSON.parse(Cookies.get('configInfo'))
+ if(config && config.logoPath != ''){
+ logoImg.value = import.meta.env.VITE_APP_BASE_API + "/" + config.logoPath
+ }else {
+ logoImg.value = logo
+ }
+ }else {
+ logoImg.value = logo
+ }
+
});
+const permissionStore = usePermissionStore()
const title = import.meta.env.VITE_APP_TITLE;
const settingsStore = useSettingsStore();
const sideTheme = computed(() => settingsStore.sideTheme);
@@ -62,9 +83,9 @@
& .sidebar-logo {
width: 32px;
- height: 32px;
+ height: auto;
vertical-align: middle;
- //margin-right: 8px;
+ margin-right: 5px;
}
& .sidebar-title {
--
Gitblit v1.9.2