Parcourir la source

03/13 20:41

后台管理
261568008@qq.com il y a 5 ans
Parent
commit
64b263f02b
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5 1
      src/views/studentManager/components/studentRecord.vue

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

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