Xiao_Mo 5 年之前
父节点
当前提交
31f9e5b951
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/views/studentManager/components/studentRecord.vue

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

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