|
...
|
...
|
@@ -21,8 +21,8 @@ class BTemplateModuleLogic extends BaseLogic |
|
|
|
* @method :post
|
|
|
|
* @time :2023/6/29 13:35
|
|
|
|
*/
|
|
|
|
public function ModuleList($map){
|
|
|
|
$list = $this->model->list($map);
|
|
|
|
return $this->success($list);
|
|
|
|
public function ModuleList($map,$page,$row,$order = 'created_at',$filed = ['*']){
|
|
|
|
$lists = $this->model->lists($map,$page,$row,$order,$filed);
|
|
|
|
return $this->success($lists);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|