elementui表格字段选择显示,如果time2不为空显示time2,否则显示time
时间: 2023-06-06 21:09:16 浏览: 89
优雅的将ElementUI表格变身成树形表格的方法步骤
5星 · 资源好评率100%
很高兴为您解答问题。对于您的问题,可以使用elementui的table的slot-scope特性和v-if条件渲染来实现。在数据表格中,使用template标签的slot-scope="scope"属性,然后在template标签中创建一个包含条件渲染的span标签,如果time2的值不为空则显示time2,否则显示time1。
具体的代码示例如下:
```
<template slot-scope="scope">
<span v-if="scope.row.time2">{{scope.row.time2}}</span>
<span v-else>{{scope.row.time1}}</span>
</template>
```
这样就可以根据time2字段是否为空来显示对应的时间字段。
希望能够帮到您!
阅读全文