1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
| // components/ellipsis-text/index.js
| const $$ = require('../../utils/util');
|
| Component({
| /**
| * 组件的属性列表
| */
| properties: {
| content: {
| type: String,
| value: '',
| },
| fontsize: {
| type: String,
| value: '28',
| },
| line: {
| type: String,
| value: 1,
| },
| suffixVisible: Boolean, // 是否有省略后缀操作
| },
|
| /**
| * 组件的初始数据
| */
| data: {
| lineHeight: null,
| },
|
| lifetimes: {
| ready: function () {
| if (!this.data.suffixVisible) {
| this.setData({ lineHeight: this.data.fontsize === '24' ? '40rpx' : '' });
| return;
| }
| let that = this;
| wx.getSystemInfoAsync({
| success: (res1) => {
| const query = this.createSelectorQuery();
| query.select('#ellipsis-text').boundingClientRect();
| query.exec(function (res) {
| let clientWidth = res[0].width;
| let ratio = 750 / (res1.windowWidth || 375);
| let allNum = parseInt(parseInt(clientWidth) / (parseInt(that.data.fontsize) / ratio));
| if (that.data.content.length > allNum * parseInt(that.data.line)) {
| that.setData({ lineHeight: that.data.fontsize === '24' ? '40rpx' : '' });
| }
| });
| },
| });
| },
| },
|
| /**
| * 组件的方法列表
| */
| methods: {
| // 点击查看隐藏内容
| _handleShow() {
| if (this.data.suffixVisible) {
| $$.showModal({ title: '', content: this.data.content, showCancel: false });
| }
| },
| },
| });
|
|