model = new articleModel(); } public function list() { $type = $this->request->param('type'); if (empty($type)) { $this->error('参数异常'); } $list = $this->model ->where('type', $type) ->where('status', 1) ->paginate(); foreach ($list as &$row) { $row['image'] = formatImage($row['image']); } $this->success('营销配置', $list); } public function detail() { $id = $this->request->param('id'); if (empty($id)) { $this->error('参数异常'); } $detail = $this->model ->where('status', 1) ->where('id', $id) ->find(); $detail['image'] = formatImage($detail['image']); $this->success('success', $detail); } }