el-table 表格循环多张图片
Posted guangzhou11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了el-table 表格循环多张图片相关的知识,希望对你有一定的参考价值。
<el-table :data="weekList" stripe tooltip-effect="dark" class="table"> <el-table-column v-for="(item, index) in tableOrderItem" :key="index" :width="item.width" :prop="item.prop" :label="item.label" align="center" show-overflow-tooltip > <template slot-scope="scope"> <template v-if="item.prop === ‘commodityDetails‘"> <div v-html="scope.row.commodityDetails"></div> </template> <!-- 图片有多张的情况 先分隔为数组 然后利用v-for 遍历得到 src --> <template v-else-if="item.prop === ‘picture1‘"> <div v-for="(item,index) in scope.row.picture1.split(‘,‘)" :key="index" class="table-flex"> <el-image style="width: 50px; height: 50px; margin-right: 10px;" :src="imgUrl+item" :preview-src-list="[imgUrl+item]"></el-image> </div> </template> <template v-else> {{scope.row[item.prop]}} </template> </template> </el-table-column> </el-table>
以上是关于el-table 表格循环多张图片的主要内容,如果未能解决你的问题,请参考以下文章
Element-Plus el-table表格组件按行内内容自动添加图片
Element-Plus el-table表格组件按行内内容自动添加图片
Element-Plus el-table表格组件按行内内容自动添加图片