feat:对通导入文章接口

This commit is contained in:
Xwen
2024-01-03 23:32:32 +08:00
parent 9070585701
commit b199b24b23
3 changed files with 117 additions and 9 deletions

View File

@@ -11,7 +11,15 @@
>
<template #default="{ node, data }">
<span class="custom-tree-node">
<span>{{ data.name }}</span>
<el-tooltip
class="box-item"
effect="dark"
:content="data.name"
placement="top-start"
>
<span class="title-name">{{ data.name }}</span>
</el-tooltip>
<span>
<a
style="color: #409eff; margin-left: 8px"
@@ -76,5 +84,11 @@ const { isHasPermission: isRemoveArticle } = getPermission("bbs:article:del");
justify-content: space-between;
font-size: 14px;
padding-right: 8px;
.title-name {
width: 100px; /* 定义容器宽度 */
white-space: nowrap; /* 不换行 */
overflow: hidden; /* 溢出部分隐藏 */
text-overflow: ellipsis; /* 显示省略号 */
}
}
</style>