// 调用方法的部分为:<el-table:cell-style="timeStyle"> // 要修改样式的部分为:<el-table-column label="创建时间" :formatter="startTime" width="150"> // 方法:methods:// 改变表格中时间的字体样式:调小timeStyle(column) {if(column.columnIndex === 2 || column.columnIndex === 4) {return "font-size: 2px"
修改样式为font-weight:bold时,修改成功;但当修改字体大小时,失效。
原文地址:https://www.cnblogs.com/pmcee/p/12254462.html
时间: 2024-10-25 18:00:17