<el-table-column prop="date" label="日期" width="220"> </el-table-column> <el-table-column prop="name" label="姓名" width="120"> </el-table-column> <el-table-column prop="address" label="年龄" width="240"> </el-table-column> </el-table> </div> </template> <script> expo...
::v-deep .el-table .rowColor{background:#f3c298; } 2、置好背景色后发现,每次鼠标移入到变色的行上面,背景色就会变成灰色,要求是移入后也应该是变过色的背景色 tableCellstyle(row, rowIndex) {if(row.row.name == 'test') {return'background: #f3c298'}return''},...
el-table点击行,改变行的背景色 为了防止污染自组件的table,row,可以在::v-deep{}外层再加一个class ::v-deep {.current-row{td{background-color:rgba(0,191,255, .35)!important; } } } https://blog.csdn.net/LH2HA3/article/details/127888560...
<el-table :data="tableData" style="background-color: #f5f5f5;"> <!--表格内容--> </el-table> ``` 在上面的示例中,通过style属性设置了整个表格的背景颜色。你可以根据需要调整颜色值来定义你想要的行颜色。 如果你想为特定的行设置颜色,你可以使用CSS选择器来选择特定的行,并为其应用样式。以下是...
费我好大劲,终于试出来了. >>> .el-table .el-table__body tr.el-table__row.current-row td, .el-table__body tr.current-row>td, .el-table__body tr.hover-row.current-row>td, .el-table__body tr.hover-row.el-table__row.current-row>td, .el-table__body tr.hover-row.el-table_...
2、选中行设置颜色 <el-table:row-style="rowClass"></el-table>data(){return:{selectRow:[],}},watch(){multipleSelection(data){this.selectRow=[];if(data.length>0){data.forEach((element)=>{this.selectRow.push(this.listData.indexOf(element));});}},}methods:{rowClass({row,rowIndex}...
return !row.userId;//判断选中的行数id是否为true进行禁用勾选 }, .el-table .info-row { background: gray; } 1. 2. 3. 4. 5. 6. 7. table 加ref :row-class-name控制状态颜色 <el-table ref="table" :data="tableData" :row-class-name="tableRowClassName" @select-all="selectAll"> ...
使用el-table的cellClicClick方法它会有返回数据,根据返回数据锁定点击的是某个单元格 动态填充单元格改变颜色渲染班次:this.$set(this.tableData[row.$index].counts, [index], data.id == 0 ? 0 : data) 点击员工姓名选中整行: this.$set(this.tableData[row.$index].counts, index, data) 点击选中整...
<el-table-column label="操作" align="center" min-width="100px"> <template slot-scope="scope"> <el-button type="info" icon="el-icon-message" @click="checkDetail(scope.row)" circle></el-button> <el-button type="primary" icon="el-icon-edit" @click="modifyData(scope.row)" circle...