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>

结果
在这里插入图片描述

Logo

前往低代码交流专区

更多推荐