使用elementui 设置表格单元格背景色
时间: 2023-06-28 22:12:47 浏览: 116
点击按钮设置表格背景色
4星 · 用户满意度95%
你可以使用 ElementUI 中的 `table` 组件的 `cell-style` 属性来设置单元格的背景色。具体操作如下:
1. 在表格组件中添加 `cell-style` 属性,值为一个函数,该函数返回一个对象,该对象包含要设置的样式属性和值。
```html
<template>
<el-table :data="tableData" :cell-style="cellStyle">
<el-table-column prop="name" label="姓名"></el-table-column>
<el-table-column prop="age" label="年龄"></el-table-column>
<el-table-column prop="address" label="地址"></el-table-column>
</el-table>
</template>
```
2. 在组件的 `methods` 中定义 `cellStyle` 函数,该函数接收两个参数:`row` 和 `column`,分别表示当前单元格所在行和列。在函数中通过判断单元格的值,返回不同的样式对象。
```javascript
<script>
export default {
data() {
return {
tableData: [
{ name: '张三', age: 18, address: '上海市' },
{ name: '李四', age: 25, address: '北京市' },
{ name: '王五', age: 30, address: '广州市' }
]
}
},
methods: {
cellStyle(row, column) {
if (row.age < 20) {
return { background: '#f0f9eb' };
} else if (row.age >= 20 && row.age < 30) {
return { background: '#e6f7ff' };
} else {
return { background: '#fff1f0' };
}
}
}
}
</script>
```
在上述代码中,我们通过判断 `row.age` 的值来设置不同的背景色。当年龄小于 20 岁时,设置背景色为淡绿色;当年龄在 20 岁到 29 岁之间时,设置背景色为淡蓝色;当年龄大于等于 30 岁时,设置背景色为淡红色。你可以根据自己的需求修改该函数。
阅读全文