|
|
@ -12,7 +12,7 @@ |
|
|
|
class="items-list-item" |
|
|
|
@click="handleToItemsSetting(item)" |
|
|
|
> |
|
|
|
<div class="font-14 font-bold">{{ item.name }}</div> |
|
|
|
<div class="font-14 font-bold text-overflow-2">{{ item.name }}</div> |
|
|
|
<div class="font-12 mt-18">创建时间:{{ item.createTime }}</div> |
|
|
|
<div class="font-12 mt-6"> |
|
|
|
最后更新: {{ getCreator(item.updateUid) }} |
|
|
@ -212,5 +212,14 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 文案移除显示2行 |
|
|
|
.text-overflow-2 { |
|
|
|
display: -webkit-box; |
|
|
|
-webkit-box-orient: vertical; |
|
|
|
overflow: hidden; |
|
|
|
text-overflow: ellipsis; |
|
|
|
-webkit-line-clamp: 2; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|