后台管理
@@ -111,7 +111,11 @@
prop="attendanceStatus"
label="考勤状态">
<template slot-scope="scope">
- {{ scope.row.attendanceStatus | clockingIn }}
+ <div>
+ <p v-if="scope.row.courseStatus != 'NOT_START'">{{ scope.row.attendanceStatus | clockingIn }}</p>
+ <p v-if="scope.row.courseStatus == 'NOT_START'">未签到 </p>
+ </div>
+
</template>
</el-table-column>
</el-table>