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>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM