|
@@ -111,8 +111,9 @@
|
|
|
prop="attendanceStatus"
|
|
|
label="考勤状态">
|
|
|
<template slot-scope="scope">
|
|
|
+ <!-- 因为未开始的课返回为旷课 产品要求写为未签到 -->
|
|
|
<div>
|
|
|
- <p v-if="scope.row.courseStatus != 'NOT_START'">{{ scope.row.attendanceStatus | clockingIn }}</p>
|
|
|
+ <p v-if="scope.row.courseStatus != 'NOT_START'">{{ scope.row.attendanceStatus | clockingIn }}</p>
|
|
|
<p v-if="scope.row.courseStatus == 'NOT_START'">未签到 </p>
|
|
|
</div>
|
|
|
|