需求:进入页面,到指定位置,为用户呈现指定的内容。
setTimeout(() => {
this.$nextTick(function() {
uni.pageScrollTo({
duration: 0,
selector: "#flow" //滚动到的元素的id
})
})
}, 50)
如果无效,可把页面的父元素设置 height: auto !important;
需求:进入页面,到指定位置,为用户呈现指定的内容。
setTimeout(() => {
this.$nextTick(function() {
uni.pageScrollTo({
duration: 0,
selector: "#flow" //滚动到的元素的id
})
})
}, 50)
如果无效,可把页面的父元素设置 height: auto !important;