mounted(){
		// this.imgH = this.$refs.dd.offsetHeight - this.$refs.con.offsetHeight;
		uni.createSelectorQuery() //是在mounted() 之后使用的吗? 我在mounted中 加了定时器,延时1秒 拿到了
		setTimeout(() => {
			uni.createSelectorQuery().select('.directory_bg').fields({ // .directory_bg 你想获取元素的类名
				size: true,
				scrollOffset: true
			}, data => { 
				console.log("得到节点信息", JSON.stringify(data));
				console.log(data.height)
				this.imgH = data.height;
			}).exec();
			
		},300) 
	},