ElementUI中el-table-column的数据格式化方式有两种

文章介绍了在Vue.js中使用ElementUI的el-table组件时,如何对表格中的日期(cashDate)进行格式化的两种方法。第一种是通过`:formatter`属性直接调用`formatCashDate`函数;第二种是利用`<templateslot-scope>`来传递数据并调用`formatCashDate`方法。这两种方式都能实现对实际回款日期的显示格式定制。
摘要由CSDN通过智能技术生成

①第一种使用:formatter="formatCashDate"方式格式化

<el-table-column property="cashDate" label="" width="140" :formatter="formatCashDate"></el-table-column>
    // 格式化实际回款日期
    formatCashDate(row, column) {
     
    },

②第二种方式

<el-table-column property="cashDate" label="" width="140">
            <template slot-scope="scope">
              {{ formatCashDate(scope.row) }}
            </template>
          </el-table-column>
  // 格式化实际回款日期
    formatCashDate(row) {
     
    },

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值