uniapp小程序超出一行显示...并展示更多按钮

uniapp小程序超出一行显示...并展示更多按钮_第1张图片

注意:全部标签需要浮动在父盒子右边哦

循环获取所有需要展示数据标签的高度

this.goods = this.goods.map(item => ({
						...item,
						showBtn: false
					}));
					this.$nextTick(() => {
						uni.createSelectorQuery().in(this).selectAll(".cart-info").boundingClientRect(
							(data) => {
								if (data.length > 0) {
									this.goods.forEach((item, index) => {
											item.showBtn = data[index].height > 20;
									})
								}
							}).exec();
					})

控制显示信息数据的行数(默认是自动换行 高度超过20的话就不换行省略并且添加全部按钮)

适配车型:{{good.vehicleTypeMemo}}
									更多

标签的样式

.cart-info {
			width: calc(100% - 50rpx);
			line-height: 30rpx;
			word-break: break-all; //换行模式
			overflow: hidden;
			text-overflow: ellipsis; //修剪文字,超过2行显示省略号
			display: -webkit-box;
			-webkit-box-orient: vertical;
		}

你可能感兴趣的:(uni-app,小程序,前端,javascript,html)