|
...
|
...
|
@@ -21,8 +21,8 @@ class AiBlogController extends BaseController |
|
|
|
* @time :2025/2/14 13:59
|
|
|
|
*/
|
|
|
|
public function getAiBlog(AiBlog $aiBlog){
|
|
|
|
if(isset($this->param['new_title']) && !empty($this->param['new_title'])){
|
|
|
|
$this->param['new_title'] = ['like', '%'.$this->param['new_title'].'%'];
|
|
|
|
if(isset($this->map['new_title']) && !empty($this->map['new_title'])){
|
|
|
|
$this->map['new_title'] = ['like', '%'.$this->map['new_title'].'%'];
|
|
|
|
}
|
|
|
|
$lists = $aiBlog->lists($this->map,$this->page,$this->row,'id',['id','keyword','new_title','route','image','task_id','status','created_at','updated_at']);
|
|
|
|
if(!empty($lists) && !empty($lists['list'])){
|
...
|
...
|
|