initdata() {
try {
const res = uni.getSystemInfoSync();
console.log(res.windowHeight);
this.style.contentH = res.windowHeight
} catch (e) {
// error
}
此方法获取到的是px的值,
但是我i项目用的是rpx写的tabbar,怎么实现减去用rpx写的高度,显示我需要的列表区域?
<scroll-view scroll-y="true" scroll-with-animation :scroll-top="scrollTop" :style="{height: style.contentH+'px'}" >
<block v-for="(item, index) in list" :key="index">
<user-chat-list :item="item" :index="index"></user-chat-list>
</block>
</scroll-view>
怎么实现px到rpx的相减的到我需要的数据?