当前位置:   article > 正文

uniapp-外部view根据图片高度自适应,解决​uni-collapse 折叠面板,在折叠开的时候​和图片未加载出来高度不准确的问题_uniapp 图片自适应容器

uniapp 图片自适应容器

目录

图片未加载出来高度问题

uni-collapse 折叠面板 组件高度问题

注:我这里使用了自己封装获取节点信息 getCreateSelectorQueryNode() 方法 代码

图片未加载出来高度问题

  1. <view id="box" :style="'height:' + boxH + 'px;'">
  2. <image id="img" :src="src" :mode="mode" @load="onLoadHandler"></image>
  3. </view>

利用 image 图片加载完成执行的事件 onLoadHandler,获取当前图片最新的高度

  1. const boxH = shallowRef(0)
  2. const onLoadHandler = () => {
  3. nextTick(() => {
  4. getCreateSelectorQueryNode('#img').then(res => {
  5. boxH.value = res.height
  6. })
  7. })
  8. }

uni-collapse 折叠面板 组件高度问题

比如:uni-collapse 折叠面板 在折叠开的时候,myBox 组件中图片未加载出来高度不准确的问题

  1. <uni-collapse :accordion="true">
  2. <uni-collapse-item :customH="customH">
  3. <template v-slot:title>
  4. <view>title</view>
  5. </template>
  6. <myBox id="myBox" " @load="load"/>
  7. </uni-collapse-item>
  8. </uni-collapse>

 myBox 组件中的 image 加载完成后,传递事件给父组件,然后获取 myBox 的高度,赋给 uni-collapse 新高度

  1. const customH= shallowRef(0)
  2. const load = () => {
  3. nextTick(() => {
  4. getCreateSelectorQueryNode('#myBox').then(res => {
  5. customH.value = res.height
  6. })
  7. })
  8. }

在 uni-collapse 折叠面板  uni-collapse-item 组件中,利用传递过去 customH 新的高度,更改 uni-collapse-item__wrap 类名中的 动态行内样式

:style="{minHeight: (isOpen ? (customH ? customH : height) :0) +'px'}"

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/954104
推荐阅读
相关标签
  

闽ICP备14008679号