Xiao_Mo 5 years ago
parent
commit
31f9e5b951
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/studentManager/components/studentRecord.vue

+ 2 - 1
src/views/studentManager/components/studentRecord.vue

@@ -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>