赞
踩
先看效果
:cell-style="cellStyle"设置单元格颜色,边框,返回值一定是个对象包含
<el-table
border
v-loading="loading"
:data="items"
:cell-style="cellStyle"
style="width: 100%; max-height: 600px; white-space: nowrap"
:default-sort="{ prop: 'fareaid', order: 'ascending' }"
></el-table>
css配置
// 单元格边框颜色
const cellStyle = ({ column }) => {
if (
["填报工时", "任务进度(%)", "工作内容", "产出文档提交情况"].includes(
column.label
)
) {
return {
borderTop: "1px solid #007bff",
borderBottom: "1px solid #007bff"
};
}
};
或者
const cellStyle = ({ row, column, rowIndex, columnIndex }) => {
// 状态列字体颜色
if (columnIndex === 0 && row.fused) {
return { backgroundColor: "#409eff" };
}
};
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。