From 02409bfbe15f22fc3b5dccadabfd860a660a49d9 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Sat, 11 Oct 2025 10:37:14 +0800
Subject: [PATCH] feat: 名称修改

---
 src/page/index/logo.vue |   15 +++++++++------
 1 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/src/page/index/logo.vue b/src/page/index/logo.vue
index 456fa78..56e45ea 100644
--- a/src/page/index/logo.vue
+++ b/src/page/index/logo.vue
@@ -3,14 +3,14 @@
     <transition name="fade">
       <span v-if="getScreen(isCollapse)" class="avue-logo_subtitle" key="0">
 <!--        {{ website.logo }}-->
-        <img class="logoImg" src="/img/bg/mainLogo.png" alt=""/>
+        <img v-if="!hideMenuTopLogo" class="logoImg" src="/img/bg/mainLogo.png" alt=""/>
       </span>
     </transition>
     <transition-group name="fade">
       <template v-if="getScreen(!isCollapse)">
         <div class="fadeStyle">
-          <img class="logoImg" src="/img/bg/mainLogo.png" alt=""/>
-          <div class="titleName">综合管理平台</div>
+<!--          <img v-if="!hideMenuTopLogo" class="logoImg" src="/img/bg/mainLogo.png" alt=""/>-->
+          <div class="titleName">吉安市低空经济服务一体化平台</div>
           <!-- <span style="font-size: 20px;"  key="1">
               {{ this.parentDeptInfo.sysName }}
           </span> -->
@@ -22,11 +22,14 @@
 
 <script>
 import { mapGetters } from 'vuex';
-
+import getBaseConfig from '@/buildConfig/config';
+const { hideMenuTopLogo } = getBaseConfig()
 export default {
   name: 'logo',
   data() {
-    return {};
+    return {
+      hideMenuTopLogo
+    };
   },
   created() {},
   computed: {
@@ -58,7 +61,7 @@
   .titleName{
     font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
     font-weight: 400;
-    font-size: 24px;
+    font-size: 16px;
     color: #1C5CFF;
   }
 }

--
Gitblit v1.9.3