*/ class System extends Admin { /** * @return bool|int|string|\think\response\Json * @throws \ReflectionException */ public function aux() { return Basics::auxCall(); } /** * @param Resource $resource * @param int $page * @param int $limit * @return \think\response\Json|\think\response\View * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function resource(Resource $resource, $page = 1, $limit = 10) { if ($this->request->isAjax()) { return ResponseJson::mixin($resource::addSoftDelWhere()->page($page, $limit)->field('path,id,tag,type')->select()); } return view('', [ 'count' => $resource::addSoftDelWhere()->count(), ]); } }