uniapp 自定义展开/收起组件(适配H5、微信小程序等)

今天遇到啦个需求,内容展开收起功能,没有的用,那边手搓一个吧

因为项目使用到的也只有H5端和微信小程序端,所以如果其余端开发的话,需要看一下适当的调整,不出意外的话就直接用吧,废话不多说,上菜:

javascript 复制代码
<template>
    <view class="more">
        <view class="more_content" :style="{ maxHeight: getMaxH }">
            <view class="more_content_text" :style="{ fontSize: size + 'rpx' }">
                <slot>{{ text }}</slot>
            </view>
        </view>
        <view class="more_btn" :style="{ fontSize: size + 'rpx' }" v-if="domHeight.inner > domHeight.outer"
            @tap="isMore = !isMore">
            {{ isMore ? '收起' : '展开' }}
        </view>
    </view>
</template>

<script>
export default {
    /**
     * 1、设置maxH,row将会失效
    */
    props: {
        // 文本
        text: {
            type: String,
            default: ''
        },
        // 最大高度 rpx
        maxH: {
            type: Number,
            default: 0
        },
        // 字体大小 rpx
        size: {
            type: Number,
            default: 28
        },
        // 行数
        row: {
            type: Number,
            default: 2
        }
    },
    data() {
        return {
            isMore: false, // 是否显示更多
            domHeight: {
                outer: 0,
                inner: 0,
            }
        }
    },
    async mounted() {
        let outerDom = await this.$util.getDomInfo('.more_content', this);
        let innerDom = await this.$util.getDomInfo('.more_content_text', this);
        this.domHeight = {
            outer: outerDom.height,
            inner: innerDom.height
        }
    },
    computed: {
        getMaxH() {
            let h = this.row * this.size * 1.5;
            // #ifdef MP-WEIXIN
            h -= 8;
            // #endif
            let more = this.domHeight.inner / (uni.upx2px(100) / 100) + 'rpx'; // 展开高度
            let noMore = this.maxH ? (this.maxH + 'rpx') : (h + 'rpx'); // 收起高度
            return this.isMore ? more : noMore
        },
    }
}
</script>

<style lang="scss" scoped>
.more {
    position: relative;

    .more_btn {
        position: absolute;
        right: 0;
        bottom: 0;
        padding-left: 20rpx;
        line-height: 1.5;
        // background: red;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 100%);
    }
}

.more_content {
    overflow: hidden;
    transition: .2s;
}

.more_content_text {
    word-wrap: break-word;
    word-break: break-all;
    white-space: pre-wrap;
    line-height: 1.5;
}
</style>
props 说明 默认值
text 需要显示的文本 -
maxH 设置最大高度(设置maxH后row属性便会失效) 0
size 内容字体大小(行高为1.5倍) 28
row 收起时显示行数(设置maxH后row属性便会失效) 2
[参数说明]

|---------|------|---|
| default | 默认插槽 | - |
[插槽]

可通过text属性传入文本,也可以通过默认插槽传入自定义内容,任君选择~

补充一下组件里面使用到的工具函数:

this.$util.getDomInfo

javascript 复制代码
	getDomInfo: function (id, that) {
		return new Promise((resolve, reject) => {
			if (!id) return reject('id/类名 不能为空')
			if (!that) return reject('this指向不能为空')
			const query = uni.createSelectorQuery().in(that);
			query.select(id).boundingClientRect(data => {
				// console.log("节点离页面顶部的距离为" + data.height);
				resolve(data || {})
			}).exec();
		})
	},
相关推荐
coldriversnow7 小时前
uni-app从后端返回的富文本中的视频截取一帧为封面
uni-app
韩立学长8 小时前
基于微信小程序的公益捐赠安全平台9hp4t247 包含完整开发套件(程序、源码、数据库、调试部署方案及开发环境)系统界面展示及获取方式置于文档末尾,可供参考。
数据库·微信小程序·小程序
2501_915918418 小时前
iOS 混淆与 IPA 加固一页式行动手册(多工具组合实战 源码成品运维闭环)
android·运维·ios·小程序·uni-app·iphone·webview
流***陌18 小时前
扭蛋机 Roll 福利房小程序前端功能设计:融合趣味互动与福利适配
前端·小程序
亮子AI1 天前
【小程序】微信小程序点击效果(view、button、navigator)
微信小程序·小程序
Q_Q5110082851 天前
python+uniapp基于微信小程序团购系统
spring boot·python·微信小程序·django·uni-app·node.js·php
future_studio1 天前
聊聊 Unity(小白专享、C# 小程序 之 加密存储)
开发语言·小程序·c#
炒毛豆1 天前
uniapp微信小程序+vue3基础内容介绍~(含标签、组件生命周期、页面生命周期、条件编译(一码多用)、分包))
vue.js·微信小程序·uni-app
從南走到北1 天前
洗车小程序系统
微信小程序·小程序
namehu1 天前
前端性能优化之:图片缩放 🚀
前端·性能优化·微信小程序