123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <template>
- <view
- class="fs-readmore"
- :style="{ height: isOpen ? 'auto' : `${height + 70}rpx`, paddingBottom: isOpen ? '70rpx' : 0, color }"
- >
- <view class="fs-readmore-content layout-box" :style="{ backgroundColor: bgColor }"><slot></slot></view>
- <view class="fs-readmore-footer" :style="{ backgroundColor: bgColor }" @click="handleToggle" v-if="visible">
- <view>{{ isOpen ? '收起' : label }}</view>
- <fs-icon class="fs-readmore-icon" type="icon-d-down" size="26rpx" :class="{ isOpen }"></fs-icon>
- </view>
- </view>
- </template>
- <script>
- /**
- * 展开更多组件
- * @description 展开更多组件
- * @property {Number} maxHeight 限定多高时展示更多按钮(单位rpx)
- * @property {String} label "更多"文本
- * @property {Boolean} open 是否展开
- * @property {String} bgColor 背景色
- * @property {String} color 文本颜色
- */
- export default {
- name: 'fs-readmore',
- props: {
- // 限定多高时展示更多按钮
- maxHeight: {
- type: Number,
- default: 100
- },
- label: {
- type: String,
- default: '展开更多'
- },
- open: Boolean,
- bgColor: {
- type: String,
- default: '#fff'
- },
- color: {
- type: String,
- default: '#666666'
- }
- },
- data() {
- return {
- isOpen: false,
- visible: false
- }
- },
- mounted() {
- this.updateHeight()
- },
- computed: {
- height() {
- return parseFloat(this.maxHeight)
- }
- },
- methods: {
- handleToggle() {
- this.isOpen = !this.isOpen
- },
- updateHeight() {
- uni
- .createSelectorQuery()
- .in(this)
- .select('.fs-readmore-content')
- .boundingClientRect(data => {
- this.visible = data.height > this.height
- })
- .exec()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .fs-readmore {
- position: relative;
- overflow: hidden;
- &-content {
- overflow: hidden;
- }
- &-footer {
- display: flex;
- align-items: center;
- justify-content: center;
- position: absolute;
- z-index: 10;
- width: 100%;
- bottom: 0;
- font-size: 13px;
- height: 70rpx;
- line-height: 70rpx;
- // box-shadow: 0 -6rpx 2rpx rgba(65, 65, 70, 0.2);
- }
- &-icon {
- transition: all 0.2s;
- margin-left: 6rpx;
- }
- .isOpen {
- transform: rotate(180deg);
- }
- }
- </style>
|