<template v-if="item['type'] === 'img'"> <el-table-column :label="item.label" :prop="item.prop" align="center"> <template slot-scope="scope"> <el-image style="width: 50px; height: 50px" :src="scope.row.gooid" ></el-image> </template> </el-table-column> </template>这段代码中如何将goodid给替换成通用的id
时间: 2024-02-14 20:07:59 浏览: 203
el-table无限滚动+控制列是否显示+列排序(非json)
5星 · 资源好评率100%
在这段代码中,`scope.row.gooid` 表示当前行的 `gooid` 属性,如果要将其替换成通用的 `id` 属性,只需要将 `:src="scope.row.gooid"` 改成 `:src="scope.row.id"` 即可。修改后的代码如下:
```
<template v-if="item['type'] === 'img'">
<el-table-column :label="item.label" :prop="item.prop" align="center">
<template slot-scope="scope">
<el-image style="width: 50px; height: 50px" :src="scope.row.id"></el-image>
</template>
</el-table-column>
</template>
```
这样就可以通用地显示不同表格中的 `id` 属性了。
阅读全文