viewui的table格式化显示日期

下载 moment.js

npm install moment --save

引入 moment.js

viewui的table格式化显示日期_第1张图片

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
    }

显示效果

viewui的table格式化显示日期_第2张图片

参考文章

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

你可能感兴趣的:(前端)