fix(wms/hrm/attendance/sync): 优化打卡时间显示格式

将打卡时间从仅显示日期调整为显示完整的年月日时分秒格式
This commit is contained in:
砂糖
2026-07-10 17:05:02 +08:00
parent 45f2dfd2a5
commit 325c0a288f

View File

@@ -86,7 +86,7 @@
<el-table-column label="考勤编号" align="center" prop="sn" /> <el-table-column label="考勤编号" align="center" prop="sn" />
<el-table-column label="打卡时间" align="center" prop="checktime" width="180"> <el-table-column label="打卡时间" align="center" prop="checktime" width="180">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ parseTime(scope.row.checktime, '{y}-{m}-{d}') }}</span> <span>{{ parseTime(scope.row.checktime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="验证状态" align="center" prop="verify" /> <el-table-column label="验证状态" align="center" prop="verify" />