<scroll-view scroll-y="true" :style="{height: scrollHeight}">
<block v-for="(item,index) in list" :key='index'>
<work-list></work-list>
</block>
</scroll-view>
onLoad() {
uni.getSystemInfo({
success: (res)=> {
const wid = res.windowWidth
const hei = res.windowHeight
// 230是除了可滚动区域外的其它部分占的rpx高度
this.scrollHeight=(hei/(wid/750)-230)*(wid/750) +'px'
}
});
},