Xiao_Mo il y a 5 ans
Parent
commit
31f9e5b951
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  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>