|
@@ -48,12 +48,17 @@
|
|
label="上班打卡时间"
|
|
label="上班打卡时间"
|
|
width="180">
|
|
width="180">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span style="margin-left: 10px">{{ scope.row.toClockDate.split(" ")[1] }}</span>
|
|
|
|
|
|
+ <span v-if="scope.row.toClockDate" style="margin-left: 10px">{{ scope.row.toClockDate.split(" ")[1] }}</span>
|
|
|
|
+ <span v-else-if="scope.row.status=='补卡成功'&&scope.row.supplementClockType=='1'" style="margin-left: 10px">已补卡</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
prop="offClockDate"
|
|
prop="offClockDate"
|
|
label="下班打卡时间">
|
|
label="下班打卡时间">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span v-if="scope.row.offClockDate" style="margin-left: 10px">{{ scope.row.offClockDate.split(" ")[1] }}</span>
|
|
|
|
+ <span v-else-if="scope.row.status=='补卡成功'&&scope.row.supplementClockType=='3'" style="margin-left: 10px">已补卡</span>
|
|
|
|
+ </template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
<!-- <el-form label-position="left" inline class="demo-table-expand">
|
|
<!-- <el-form label-position="left" inline class="demo-table-expand">
|