我的代码
<scroll-view :scroll-y="true" @scroll="scrollChange" class="pi-page-content-flex">
<view class="pdf-img-content" v-if="pdfList.length > 0">
<view class="pdf-img-box" v-for="(item,index) in pdfList" :key="index+'-pdf'">
<image :webp="true" mode="scaleToFill" class="pdf-img " @click="previewImageClick(index)" :lazy-load="true" @load="loadSuccess(item,index)" @error="handleImageError(item, index)"
:class="index == pdfList.length -1 ? 'pdf-image':''" :src="item.url"></image>
<view v-if="index == 1">{{item.url}}</view>
</view>
</view>
</scroll-view>
然后其它有一个图片路径显示有问题:https://sign.zhenhanzhe.com/prod-api/profile/cimg/c_29_2.png
然后这个图片路径在这个手机的小程序里,不管放到哪里都是这样,图片走是的成功的方法 loadSuccess,让安卓手机来看这个图片列表是正常的
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。