Ken 1 semana atrás
pai
commit
59aab92715
1 arquivos alterados com 9 adições e 0 exclusões
  1. 9 0
      app/Http/Controllers/api/Issue.php

+ 9 - 0
app/Http/Controllers/api/Issue.php

@@ -28,6 +28,15 @@ class Issue extends BaseController
         $list[] = Cao::whereIn('id', $type)->get();
         $type = [5, 6, 7, 8];
         $list[] = Cao::whereIn('id', $type)->get();
+        $type = [9,10];
+        $list[] = Cao::whereIn('id', $type)->get();
+
+
+        $list[] = [];
+
+        $type = [11,12,13];
+        $list[] = Cao::whereIn('id', $type)->get();
+
         return $this->success($list);
     }