|
|
@@ -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);
|
|
|
}
|
|
|
|