dataLists(); } /** * @notes 商城资讯/帮助中心分类列表 * @return \think\response\Json * @author Tab * @date 2021/7/14 14:57 */ public function articleCategoryLists() { return $this->dataLists(new ArticleCategoryLists()); } /** * @notes 获取商城资讯/帮助中心详情 * @return \think\response\Json * @author Tab * @date 2021/7/14 15:06 */ public function detail() { $params = $this->request->get(); $result = ArticleLogic::detail($params); return $this->data($result); } }