element-ui 一整行变色/某个单元格变色
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
* row 表格每一行的数据
* column 表格每一列的数据
* rowIndex 表格的行索引,不包括表头,从0开始
* columnIndex 表格的列索引,从0开始
公共的template中:
<el-table :data="tableData" style="width: 100%" :row-style="isRed" @selection-change="selected">
<el-table-column type="selection" width="50">
</el-table-column>
<el-table-column prop="name" label="姓名" width="80">
</el-table-column>
<el-table-column prop="age" label="年龄" width="80">
</el-table-column>
</el-table>
让表格的某个单元格变色
methods中:
isRed ({row, column, rowIndex, columnIndex}) {
if (columnIndex === 2) {
return {
backgroundColor: 'red'
}
}
},
让选择到的那行表格变色
template中:
:row-style="isRed"
data中:
selectedArr: [] // 把选择到的当前行的id存到数组中
methods中:
selected (select) {
this.selectedArr = arr
},
isRed({ row }) {
const checkIdList = this.selectedArr.map(item => item.id)
if (checkIdList.includes(row.id)) {
return {
backgroundColor: '#F4EDE6',
}
}
}
cell-class-name 和 cell-style 的区别
cell-class-name | cell-style |
行的 className 的回调方法 也可以使用字符串为所有行设置一个固定的 className。 | 行的 style 的回调方法 也可以使用一个固定的 Object 为所有行设置一样的 Style。 |
Function({row, rowIndex})/String | Function({row, rowIndex})/Object |
row-class-name 和 row-style 的区别
cell-class-name | cell-style |
单元格的 className 的回调方法,也可以使用字符串为所有单元格设置一个固定的 className | 单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有单元格设置一样的 Style。 |
Function({row, column, rowIndex, columnIndex})/String | Function({row, column, rowIndex, columnIndex})/Object |
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献6条内容
所有评论(0)