|
...
|
...
|
@@ -19,7 +19,8 @@ class BlogCategoryController extends BaseController |
|
|
|
public function lists(BlogCategoryModel $blogCategoryModel){
|
|
|
|
//搜索条件
|
|
|
|
$this->map['project_id'] = $this->user['project_id'];
|
|
|
|
$lists = $blogCategoryModel->lists($this->map,$this->page,$this->row);
|
|
|
|
$lists = $blogCategoryModel->lists($this->map,$this->page,$this->row,$this->order,
|
|
|
|
['id','pid','name','status','sort','remark']);
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|