具体效果
实现代码
第一种方法 加class类名
style中
.table :empty::before {
content: "--";
color: gray;
}
注意
:如果使用了switch滑块
、steps步骤条
等,可能也会被加上--
,效果就变成了
解决
:
template中,给switch滑块加class
<el-table-column label="状态" width="90" prop="status" align="center">
<template slot-scope="scope">
<el-switch
v-model="scope.row.status"
@change="statusMonitor(scope.$index, scope.row)"
:active-value="0"
:inactive-value="1"
class="status"
>
</el-switch>
</template>
</el-table-column>
style中
.status :empty::before {
content: "";
color: red;
}
第二种方法 template中
<el-table-column label="维护开始时间" align="center" width="180">
<template slot-scope="scope">{{
scope.row.startTime ? scope.row.startTime : "--"
}}</template>
</el-table-column>
下班~
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之家整理,本文链接:https://www.bmabk.com/index.php/post/48838.html