From d5ef0fe419c0b3a83c3c73a63fb54353572a8103 Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期二, 01 四月 2025 17:48:37 +0800 Subject: [PATCH] 修改布局 --- src/components/drawer/CustomDrawer.vue | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/drawer/CustomDrawer.vue b/src/components/drawer/CustomDrawer.vue index f17cee8..1262e25 100644 --- a/src/components/drawer/CustomDrawer.vue +++ b/src/components/drawer/CustomDrawer.vue @@ -1,6 +1,6 @@ <template> <div class="relative h100" v-loading="loadingData" :style="`width: ${rightBox}px;transition: 0.7s ease-in;`"> - <div class="retract_icon" @click="toggleShow"> + <div class="retract_icon" @click="toggleShow" v-if="!isSharePage"> <i class="text-[#fff] transition-all" :class="isShow ? 'ywifont ywicon-zuoyoujiantou1' : 'ywifont ywicon-zuoyoujiantou'"></i> </div> <div class="pc-mouldboard column exampleSlide"> @@ -95,7 +95,6 @@ <script setup lang="ts"> import { Search } from '@element-plus/icons-vue'; -import { groupBy } from 'lodash'; import { computed, reactive, ref, watch } from 'vue'; import { activeGroupType, @@ -103,10 +102,12 @@ activeSampleId, activeSectionAId, exampleSceneList, + isSharePage, sceneGroupList, setRoomConfig, } from '/@/stores/chatRoom'; import { convertListToTree } from '/@/utils/util'; +import { groupBy } from 'lodash-es'; let state = reactive({ activeBusinessName: '', //鍦烘櫙 activeBusinessChildName: '', @@ -128,6 +129,7 @@ listSampleLoading: false, sampleMap: {}, }); + //#region ====================== 浼犲弬 ====================== const isShow = defineModel('isShow', { type: Boolean, -- Gitblit v1.9.3