如何在vue.js渲染完界面之后再调用函数
2021-01-27 02:14
标签:ref elf scrollto 分区 tps client array 函数 baidu https://blog.csdn.net/qappleh/article/details/88708341?utm_medium=distribute.pc_relevant.none-task-blog-baidujs-5 如何在vue.js渲染完界面之后再调用函数 标签:ref elf scrollto 分区 tps client array 函数 baidu 原文地址:https://www.cnblogs.com/winchance/p/13223873.html 1 watch:{
2 detailsList:function(){
3 this.$nextTick(function() {
4 let query = uni.createSelectorQuery(); //创建节点查询器
5 query.selectAll(‘.node‘).boundingClientRect(data => {
6 data.forEach(function(value) {
7 // 各可视分区滚动条位置=区域位置-74(Tab高度)+24(各区域间隔)
8 _self.scrollTopArray.push(Math.ceil(value.top - (24 + 74) * rpxToPxRate) + 1);
9 })
10 console.log(JSON.stringify(_self.scrollTopArray))
11 }).exec();
12 });
13 }
14 }
文章标题:如何在vue.js渲染完界面之后再调用函数
文章链接:http://soscw.com/index.php/essay/47548.html