关键代码:
This.dataList = this.dataList.map((item,index)=>{
Let showFlag = this.$refs.textContent[index].offsetHeight > 44 ? true : false
If(this.$refs.textContent[index].offsetHeight > 44){
This.$refs.textContent[index].style.overflow = ‘hidden’
This.$refs.textContent[index].style.textOverflow = ‘ellipsis’
This.$refs.textContent[index].style.display = ‘-webkit-box’
}
})
//因为原生的style中没有属性-webkit-line-clamp: 2; -webkit-box-orient: vertical;
所以直接写在css中,最后要切样式 overflow: auto; text-overflow: clip; display: block;-webkit-line-clamp: none; -webkit-box-orient: inherit; line-height: 22px;