fix oss页面 图片预览不显示jpg,jpeg图片的bug

This commit is contained in:
Nguyendream 2021-08-04 07:05:12 +00:00 committed by Gitee
parent 2b1c3335f6
commit 653a1fed69

View File

@ -109,12 +109,11 @@
<el-table-column label="文件展示" align="center" prop="url">
<template slot-scope="scope">
<el-image
v-if="previewListResource && scope.row.fileSuffix.indexOf('png','jpg','jpeg') > 0"
v-if="previewListResource && /png|jpg|jpeg/.test(scope.row.fileSuffix)"
style="width: 100px; height: 100px;"
:src="scope.row.url"
:preview-src-list="[scope.row.url]"/>
<span v-text="scope.row.url"
v-if="scope.row.fileSuffix.indexOf('png','jpg','jpeg') < 0 || !previewListResource"/>
<span v-else v-text="scope.row.url"/>
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" width="180">