移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.1 KiB

2 months ago
<template>
4 weeks ago
<view :style="{ color: color }">
2 months ago
<view
style="
4 weeks ago
font-size: 28rpx;
2 months ago
line-height: 160%;
position: relative;
color: inherit;
white-space: normal;
2 months ago
"
v-if="value.length < splitLength"
>
{{ value }}
</view>
<view
v-else
style="
4 weeks ago
font-size: 28rpx;
2 months ago
line-height: 160%;
position: relative;
color: inherit;
white-space: normal;
2 months ago
"
4 weeks ago
@tap.native.stop="isShowAllText = !isShowAllText"
2 months ago
>
4 weeks ago
{{ isShowAllText ? value : `${value.slice(0, splitLength)}...` }}
<text style="color: #17c653; padding-left: 8rpx">
2 months ago
{{ isShowAllText ? '收起' : '展开' }}
</text>
</view>
</view>
</template>
<script>
export default {
name: 'cs-text-more',
data() {
return {
isShowAllText: false
}
},
props: {
value: {
type: String,
default: '文本简介'.repeat(20)
},
color: {
4 weeks ago
type: String,
default: '#4b5675'
2 months ago
},
splitLength: {
type: Number,
4 weeks ago
default: 62
2 months ago
}
}
}
</script>
<style lang="scss"></style>