Browse Source

首页会话功能修改

bobo04052021@163.com 4 weeks ago
parent
commit
a60fefce12
2 changed files with 4 additions and 2 deletions
  1. 1 0
      src/layouts/default/layout.data.ts
  2. 3 2
      src/layouts/default/sider/index.vue

+ 1 - 0
src/layouts/default/layout.data.ts

@@ -1,5 +1,6 @@
 export const noHeadeLink = ['/micro-vent-3dModal/dashboard/analysis', '/model3D/home', '/fileManager/cad-viewer'];
 export const noSiderLink = ['/fileManager/cad-viewer', '/micro-vent-3dModal/dashboard/bd/fire', '/micro-vent-3dModal/dashboard/bd/dust'];
+export const noChatLink = ['/micro-vent-3dModal/modelchannel/model3D/home'];
 export const noContentLink = ['/micro-vent-3dModal/modelchannel/model3D/home'];
 export const ThemeModel = {
   theme5_5: {

+ 3 - 2
src/layouts/default/sider/index.vue

@@ -14,7 +14,7 @@
   <BottomSider v-else-if="getIsBottomMenu" />
   <Sider v-else /> -->
   <BottomSider v-if="!noSiderLink.includes(routePath)" />
-  <bottomSider2 v-if="!noSiderLink.includes(routePath)" />
+  <bottomSider2 v-if="noChatLink.includes(routePath)" />
 </template>
 <script lang="ts">
 import { defineComponent } from 'vue';
@@ -29,7 +29,7 @@ import { useAppInject } from '/@/hooks/web/useAppInject';
 import { useMenuSetting } from '/@/hooks/setting/useMenuSetting';
 import { useDesign } from '/@/hooks/web/useDesign';
 import { useRoute } from 'vue-router';
-import { noSiderLink } from '../layout.data';
+import { noSiderLink, noChatLink } from '../layout.data';
 export default defineComponent({
   name: 'SiderWrapper',
   components: { Sider, Drawer, MixSider, BottomSider, bottomSider2 },
@@ -56,6 +56,7 @@ export default defineComponent({
       getShowSidebar,
       routePath: route.path,
       noSiderLink,
+      noChatLink,
     };
   },
 });