Explorar el Código

取消的课程,教练不显示

lizhen_gitee hace 1 mes
padre
commit
1647d696b8
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      application/api/controller/coach/Lesson.php

+ 1 - 2
application/api/controller/coach/Lesson.php

@@ -143,8 +143,7 @@ class Lesson extends Apic
         $enddate   = $getdate.'-'.$endday;
         $where = [
             'starttime' => ['BETWEEN',[strtotime($startdate),strtotime($enddate)+86399]],
-            'status'    => 0,
-            'is_show' => 1,
+            'status' => ['IN',[0,20]], //状态:0=报名中,20=已点名,30=已取消
         ];
         //dump($where);exit;
         $slots = Db::name('lesson_slot')