fix(wms/hrm/attendance/sync): 优化打卡时间显示格式
将打卡时间从仅显示日期调整为显示完整的年月日时分秒格式
This commit is contained in:
@@ -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" />
|
||||||
|
|||||||
Reference in New Issue
Block a user