vue table表格 时间字段分两行( parseTime-格式化时间)
vue table表格 时间字段分两行( parseTime-格式化时间)后台获取的时间字段createTime: “2021-11-02 16:37:50”在表格中将日期与时间分行使用parseTime 格式化时间<el-table-column label="开始时间"align="center"prop="startTime"
·
vue table表格 时间字段分两行( parseTime-格式化时间)
后台获取的时间字段 createTime: “2021-11-02 16:37:50” 在表格中将日期与时间分行
使用parseTime 格式化时间
<el-table-column label="开始时间"
align="center"
prop="startTime"
width="150">
<template slot-scope="scope">
<p>{{ parseTime(scope.row.startTime, '{h}:{m}:{s}') }}</p>
<span>{{ parseTime(scope.row.startTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
结果
更多推荐
已为社区贡献1条内容
所有评论(0)