<template> <el-container style="height: 100%"> <el-table :data="tableData" style="width: 100%"> <el-table-column prop="index" label="考核指标" width="150"></el-table-column> <el-table-column prop="ymatter" label="负责人" width="120"></el-table-column> <el-table-column prop="cycle" label="事项" ></el-table-column> </el-table> </el-container> </template>tableData: [{ index: '能力服务健康度', ymatter: '能力保障团队', cycle: '保障上台能力的正常平稳运行' },将上台能力四个字变为红色
时间: 2023-10-11 21:09:40 浏览: 135
牛牛视频答题小程序 <template name="tmpl-15-container">
您可以在 `el-table-column` 标签里添加 `scoped-slot` 来改变列中的内容,具体来说,您可以添加一个 `template` 标签,然后在里面使用 `span` 标签来包裹需要变为红色的文字,并添加 `style` 属性来设置文字颜色为红色。示例如下:
```
<template>
<el-container style="height: 100%">
<el-table :data="tableData" style="width: 100%">
<el-table-column prop="index" label="考核指标" width="150"></el-table-column>
<el-table-column prop="ymatter" label="负责人" width="120"></el-table-column>
<el-table-column prop="cycle" label="事项">
<template slot-scope="scope">
<span :style="{ color: 'red' }">{{ scope.row.cycle.replace('上台能力', '<span style=\'color: red;\'>上台能力</span>') }}</span>
</template>
</el-table-column>
</el-table>
</el-container>
</template>
```
在上面的示例中,我们使用了 `replace` 函数来将原来的字符串中的 `上台能力` 替换成带有红色字体的字符串。注意,我们在 `replace` 函数中使用了 HTML 标签 `span` 来包裹需要变为红色的文字,并设置了 `style` 属性来设置文字颜色为红色。最后,我们将替换后的字符串插入到 `span` 标签中,并使用 `v-bind` 指令将 `style` 属性绑定到 `span` 标签上,以实现文字变为红色的效果。
阅读全文