vue - element ui table 列表中 显示 图片,点击放大缩小旋转等功能
<el-table v-loading="loading" :data="dataList" @selection-change="handleSelectionChange"><el-table-column label="签名图片" align="center" prop="patrolUrl"><template slot-scope="scope">&l
·
<el-table v-loading="loading" :data="dataList" @selection-change="handleSelectionChange">
<el-table-column label="签名图片" align="center" prop="patrolUrl">
<template slot-scope="scope">
<el-image style="width: 100px; height: 100px" :src="scope.row.url" :preview-src-list="[scope.row.url]"></el-image>
</template>
</el-table>
element ui 新版本 加入了图片的这种操作。注意这里的写法。因为 :preview-src-list 这里要的是个数组。而我们只需要当前的一个图片的操作。那么就可以这么做。"[你的 变量 图片路径]",就直接给加个 【】 就可以了
但是他给出的关闭按钮的颜色很难看
关闭按钮一般人都是找不到的。解决方法换个颜色的话 很简单。
<el-image style="width: 100px; height: 100px;color:#fff" :src="scope.row.url" :preview-src-list="[scope.row.url]"></el-image>
换了个颜色就很好看出来关闭按钮了
.另一种引用插件的方式。
更多推荐
已为社区贡献5条内容
所有评论(0)