Ver Fonte

03/13 20:41

后台管理
261568008@qq.com há 5 anos atrás
pai
commit
64b263f02b
1 ficheiros alterados com 5 adições e 1 exclusões
  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>