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>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章