fix: 关闭树状菜单 debug 信息

This commit is contained in:
xiaozzzi 2024-04-08 00:52:12 +08:00
parent 1b23dbac6f
commit da5e74e915
3 changed files with 18 additions and 17 deletions

View File

@ -218,23 +218,11 @@
<ArticleSearch @open-article="openArticle" @create-link="createUrlLink"></ArticleSearch> <ArticleSearch @open-article="openArticle" @create-link="createUrlLink"></ArticleSearch>
</el-dialog> </el-dialog>
<div <!-- <div class="doc-tree-debug">
style="
position: absolute;
top: 5px;
left: 5px;
z-index: 100;
font-size: 12px;
color: black;
font-weight: 700;
text-align: left;
width: 700px;
word-break: break-all;
">
<div>所有展开{{ Array.from(docTreeCurrentExpandId) + '' }}</div> <div>所有展开{{ Array.from(docTreeCurrentExpandId) + '' }}</div>
<div>当前选中{{ docTreeCurrentId }}</div> <div>当前选中{{ docTreeCurrentId }}</div>
<div>当前文章{{ articleCurrnetId }}</div> <div>当前文章{{ articleCurrnetId }}</div>
</div> </div> -->
</template> </template>
<script setup lang="ts"> <script setup lang="ts">

View File

@ -172,3 +172,16 @@
border-radius: 0; border-radius: 0;
} }
} }
.doc-tree-debug {
position: absolute;
top: 5px;
left: 5px;
z-index: 100;
font-size: 12px;
color: black;
font-weight: 700;
text-align: left;
width: 700px;
word-break: break-all;
}

View File

@ -120,10 +120,10 @@
<PictureInfo ref="PictureInfoRef" @saved="savedCallback"></PictureInfo> <PictureInfo ref="PictureInfoRef" @saved="savedCallback"></PictureInfo>
</el-dialog> </el-dialog>
<div style="position: absolute; top: 5px; left: 5px; z-index: 100; font-size: 12px; color: black; font-weight: 700; text-align: left; width: 700px"> <!-- <div class="doc-tree-debug">
<div>当前选中{{ docTreeCurrentId }}</div>
<div>所有展开{{ Array.from(docTreeCurrentExpandId) + '' }}</div> <div>所有展开{{ Array.from(docTreeCurrentExpandId) + '' }}</div>
</div> <div>当前选中{{ docTreeCurrentId }}</div>
</div> -->
</template> </template>
<script setup lang="ts"> <script setup lang="ts">