renderSuccess('', compact('category')); } /** * 文章列表 */ public function index($category_id = 0) { $model = new ArticleModel; $data = $this->postData(); $shop_supplier_id = $data['shop_supplier_id']??-1; $list = $model->getList($category_id, $this->postData(),$shop_supplier_id,$shop_supplier_id); return $this->renderSuccess('', compact('list')); } /** *文章详情 */ public function detail($article_id) { $detail = ArticleModel::detail($article_id); return $this->renderSuccess('', compact('detail')); } }