el-table 如何动态的修改某一单元格中字体颜色
程序员文章站
2022-07-13 15:37:24
...
关键代码
<el-table-column header-align="center" align="center" v-for="item in notFixedData" :key="item.prop"
v-if="item.isTrue" :prop="item.prop" :label="item.title" :min-width="item.width">
<template slot-scope="scope">
<span v-if="scope.row[item.prop] !== '缺'">{{scope.row[item.prop]}}</span>
<span v-else style="color: red;">{{scope.row[item.prop]}}</span>
</template>
</el-table-column>
上一篇: 你不知道的批处理
下一篇: bat 批处理之字符串操作