|
@@ -237,7 +237,10 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="cardHours" :label="$t('workAttendance') + '(h)'" v-if="user.timeType.showCorpwxCardtime==1||user.timeType.showDdCardtime==1 || user.timeType.syncFanwei==1">
|
|
<el-table-column prop="cardHours" :label="$t('workAttendance') + '(h)'" v-if="user.timeType.showCorpwxCardtime==1||user.timeType.showDdCardtime==1 || user.timeType.syncFanwei==1">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span :style="scope.row.cardHours != scope.row.reportTime?'color:red':''">{{scope.row.cardHours?scope.row.cardHours.toFixed(1):'-'}}</span>
|
|
|
|
|
|
+ <span :style="scope.row.cardHours != scope.row.reportTime?'color:red':''">
|
|
|
|
+ <span>{{ scope.row.startTime }} --- {{ scope.row.endTime }}</span>
|
|
|
|
+ {{scope.row.cardHours?scope.row.cardHours.toFixed(1):'-'}}
|
|
|
|
+ </span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|