写博客不是为了博眼球 而是为了记笔记
格式为 年-月-日 时:分:秒 2019-10-10 14:27:10
特别要注意后端返回的时间戳单位 此处为处理毫秒 如果是秒 需要将返回结果乘以1000
<el-table-column prop="firstTime" label="發現時間">
<template slot-scope="scope">
<span>{
{ scope.row.firstTime | formatDate }}</span>
</template>
</el-table-column>
filters: {
formatDate: function (value) {
let date = new Date(value);
let y = date.getFullYear();
let MM = date.getMonth() + 1;
MM = MM < 10 ? ('0' + MM) : MM;
let d = date.getDate();