VUE动态样式

在这里插入图片描述
代码片段

<el-table-column label="租金起止日期">
  <template slot-scope="scope">
    <span
      :style="{color: scope.row.cont_money_status == 1 ? '#000':scope.row.cont_money_status == 0 ? 'red' : 'orange'}"
    >{{scope.row.cont_money_sdate}}~{{scope.row.cont_money_edate}}</span>
  </template>
</el-table-column>
<el-table-column label="租金到期情况" width="80px">
  <template
    slot-scope="scope"
  >{{scope.row.cont_money_status == 1 ? "未到期" : scope.row.cont_money_status == 0 ? "已过期" : "即将到期"}}</template>
</el-table-column>
发布了54 篇原创文章 · 获赞 21 · 访问量 5万+

猜你喜欢

转载自blog.csdn.net/qq_42816550/article/details/101675457