element ui 表格没有数据时用–填充

导读:本篇文章讲解 element ui 表格没有数据时用–填充,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

具体效果

在这里插入图片描述

实现代码

第一种方法 加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

(0)
小半的头像小半

相关推荐

极客之家——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!