This commit is contained in:
gongjiale 2022-12-02 16:14:22 +08:00
parent 073713cf95
commit e0be8ddc03
1 changed files with 4 additions and 4 deletions

View File

@ -42,11 +42,11 @@
{{ props.dataList.description }} {{ props.dataList.description }}
</div> </div>
</a-tooltip> --> </a-tooltip> -->
<div class="bottomdesc" v-if="props.dataList.description.length < 200"> <div class="bottomdesc" v-if="(props.dataList.description.length < 183)">
场景描述 {{ props.dataList.description || '--' }} 场景描述 {{ props.dataList.description || '--' }}
</div> </div>
<div class="bottomdesc" v-else-if="dowmOrUp === '展开>>'"> <div class="bottomdesc" v-else-if="dowmOrUp === '展开>>'">
场景描述 {{ props.dataList.description.slice(0, 200) }}... 场景描述 {{ props.dataList.description.slice(0, 183) }}...
<span <span
style="cursor: pointer; color: rgb(241 211 112)" style="cursor: pointer; color: rgb(241 211 112)"
@click="showDetail(dowmOrUp)" @click="showDetail(dowmOrUp)"
@ -351,12 +351,12 @@ watch(
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
word-break: break-all; word-break: break-all;
width: 800px; width: 800px;
font-size: 14px; font-size: 16px;
} }
.bottomdesc1 { .bottomdesc1 {
overflow: auto; overflow: auto;
width: 800px; width: 800px;
font-size: 14px; font-size: 16px;
height: 200px; height: 200px;
} }
margin-top: 0.2rem; margin-top: 0.2rem;