viewui的table格式化显示日期

不打扰是莪最后的温柔 提交于 2019-12-13 21:04:01

下载 moment.js

npm install moment --save

引入 moment.js

在这里插入图片描述

import Moment from 'moment'
Vue.prototype.moment = Moment

组件中

表格部分代码

<Table size="small" border stripe :columns="orderColumns" :data="orderList" style="border-radius: 3px;">
      <template slot-scope="{ row, index }" slot="action">
        <Button type="primary" size="small" style="margin-right: 5px" @click="handleEdit(index)">编辑</Button>
        <Button type="error" size="small" @click="handleDelete(row, index)">删除</Button>
      </template>
    </Table>

表格的列对应的代码

orderColumns: [
        {
          title: '日期',
          key: 'billingDate',
          width: '120px',
          align: 'center',
          render: (h, params) => {
            return h('span', {
            }, this.dateFormat(params.row.billingDate))
          }
        }
 ]

在methods 中定义 dateFormat方法

	// 日期时间格式化
    dateFormat (date) {
      var result = this.moment(date).format('YYYY-MM-DD')
      return result
    }

显示效果

在这里插入图片描述

参考文章

vue+element-ui 表格中的时间格式化

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!