img 图片展示,大图预览失效解决,代码中使用的预览组件为:vue-photo-preview
使用场景:详情页面-model.images循环展示,点击查看大图,不能点击。
解决方案:
在详情数据请求完毕加 this.$previewRefresh();
img代码如下:
<div class='row-items'><imgv-for="item in model.images" :key="item.id":src="getImgView(item.fileFullUrl)":preview="item.id" height="120px" alt=""style="max-width:120px;font-size: 12px;font-style: italic;margin-bottom: 10px;margin-right: 10px"/> </div>
.row-items {display: flex;flex-direction: row;align-items: center;flex-wrap: wrap; }