model = new \app\admin\model\zy\Stadium; parent::__construct(); } public function index() { $params = $this->request->param(); $model = $this->model->where('status', 1); if (isset($params['name'])) { $model->where('name', 'like', '%' . $params['name'] . '%'); } $res = $model->select(); $this->success('Success', $res); } }