一 数据格式: 每条对象中goodsCategoryList的数据是一种类型。 二 代码 <el-table-columnv-for="(item, index) in tableData[0].goodsCategoryList":key="index":label="item.attrName"><!--数据的遍历 scope.row就代表数据的每一个对象--><templateslot-scope="scope"><span>{{scope.row.goodsCategoryL...
一 数据格式: 每条对象中goodsCategoryList的数据是一种类型。 二 代码 <el-table-columnv-for="(item, index) in tableData[0].goodsCategoryList":key="index":label="item.attrName"><!--数据的遍历 scope.row就代表数据的每一个对象--><templateslot-scope="scope"><span>{{scope.row.goodsCategoryL...
// 忽略加了"leave-alone"类的列 if (cells[0]?.classList?.contains?.("leave-alone")) { return; } const widthList = cells.map((el) => { return el.querySelector(".cell")?.scrollWidth || 0; }); const max = Math.max(...widthList); const padding = 32; table.querySelectorAll...
<!-- 数据的遍历 scope.row就代表数据的每⼀个对象--> <template slot-scope="scope"> <span>{{scope.row.goodsCategoryList[index].attrValue}}</span> </template> </el-table-column> v-for="(item, index) in tableData[0].goodsCategoryList"遍历tableData[0].goodsCategoryList的⽬的:1 ...
通过v-for来遍历每个列表的图片地址数组,结合:src="item"把每个图片展示在表格里,展示图片的大小样式用style来设定 通过:perview-src-list="getImgList(scope.row.workPhoto, index)"来开启图片预览功能且调用方法getImgList(),每次传入当前表格的图片地址数组以及点击查看的图片的下标 ...
通过v-for来遍历每个列表的图片地址数组,结合:src="https://blog.csdn.net/z1026909465/article/details/item"把每个图片展示在表格里,展示图片的大小样式用style来设定 通过:perview-src-list="getImgList(scope.row.workPhoto, index)"来开启图片预览功能且调用方法getImgList(),每次传入当前表格的图片地址数组...
<el-table :data="tableLogData" style="width: 100%" header-cell-class-name="header-cell-color" v-loading="listLoading"> <el-table-column prop="level" min-width="100" :render-header="renderLastHeader"></el-table-column> </el-table>...