欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

element-ui 表格数据时间格式化的方法

程序员文章站 2022-06-23 12:13:36
后台返回时间格式  /1470220594000/ 在element-ui  table 如何格式化呢  1.首先 复制代码 代码如下:...

后台返回时间格式  /1470220594000/

在element-ui  table 如何格式化呢 

1.首先

复制代码 代码如下:
<el-table-column prop="auditendtime" label="处理时间" width="120" :formatter="dateformat" align="center"></el-table-column>
 

主要是:formatter="dateformat" 这个属性 

formatter 用来格式化内容 function(row, column, cellvalue, index)  

然后在   methods 方法对象里  添加 如下方法

//时间格式化
      dateformat(row, column, cellvalue, index){
          const daterc = row[column.property]
          if(daterc!=null){
            const datemat= new date(parseint(daterc.replace("/date(", "").replace(")/", ""), 10));
           const year = datemat.getfullyear();
          const month = datemat.getmonth() + 1;
          const day = datemat.getdate();
          const hh = datemat.gethours();
          const mm = datemat.getminutes();
          const ss = datemat.getseconds();
          const timeformat= year + "/" + month + "/" + day + " " + hh + ":" + mm + ":" + ss;
          return timeformat;
          }
          
      }

格式化后:

2018/2/27 8:59:19

ps:element ui的表格table列的宽度自适应设置

不要设置  width="110px"

<el-table-column prop="login_id" align="center" label="工号"> </el-table-column>

<el-table-column prop="login_id" width="110px" align="center" label="工号"> </el-table-column>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。