Ken 1 week ago
parent
commit
37e8597fe0
1 changed files with 4 additions and 3 deletions
  1. 4 3
      app/Http/Controllers/api/Issue.php

+ 4 - 3
app/Http/Controllers/api/Issue.php

@@ -30,16 +30,17 @@ class Issue extends BaseController
         $list[] = Cao::whereIn('id', $type)->get();
         $type = [9,10];
         $list[] = Cao::whereIn('id', $type)->get();
-
-
         $list[] = [
             ['field'=>'2.8回本','val'=>0],
             ['field'=>'3.2回本','val'=>0],
         ];
-
         $type = [11,12,13];
         $list[] = Cao::whereIn('id', $type)->get();
 
+
+        $list[] = Cao::where('id', '>=',14)
+            ->where('id', '<=',41)
+            ->get();
         return $this->success($list);
     }