<view :style="txtHeight>110 && showTxt? 'height:110px':'height:'+txtHeight+'px;'+showTxt?'padding-bottom:22px':''" class="txt more" ref="txt" id="txt">
<rich-text :nodes="text" style="font-size: 15px;line-height: 22px;color: #242424;"></rich-text>
</view>
let that = this;
// #ifdef APP-PLUS
const dom = weex.requireModule('dom')
const result = dom.getComponentRect(this.$refs.txt, option => {
console.log('getComponentRect:', option.size.height)
})
//#endif
1***@qq.com (作者)
不是的,获取元素信息的方法是写在组件的mounted里面,所以只有一个refs.txt,是个对象来的
2021-04-05 20:19