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