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; }