|
...
|
...
|
@@ -26,7 +26,8 @@ class CustomTemplateLogic extends BaseLogic |
|
|
|
* @method :post
|
|
|
|
* @time :2023/6/29 15:46
|
|
|
|
*/
|
|
|
|
public function customTemplateLists($map,$page,$row,$order = 'created_at',$filed = ['*']){
|
|
|
|
public function customTemplateLists($map,$page,$row,$order = 'created_at'){
|
|
|
|
$filed = ['id','name','status','url','title','keywords','description','project_id','created_at','updated_at'];
|
|
|
|
$map['deleted_status'] = 0;
|
|
|
|
$map['project_id'] = $this->user['project_id'];
|
|
|
|
$lists = $this->model->lists($map,$page,$row,$order,$filed);
|
...
|
...
|
|