export const getHeight = (dom, proxy) => { let height = 0 uni.createSelectorQuery() .in(proxy) .select(dom) .boundingClientRect(rect => { height = rect.height }) .exec() return height };