model = new SysLogModel(); } public function index() { $data = $this->model->select(); $this->assign("data", $data); return $this->fetch(); } public function delete($id = null) { if ($this->model->destroy($id)) { return ['code' => 1, 'msg' => '操作成功']; } else { return ['code' => 0, 'msg' => '操作失败']; } } }