@@ -42,6 +42,7 @@ class Hotsearch extends Controller
$this->title='热门搜索管理';
DataHotSearch::mQuery()
->like('name')
+ ->where('is_del',0)
->order('id','desc')
->layTable();
}
@@ -68,7 +69,7 @@ class Hotsearch extends Controller
*/
public function del($id){
DataHotSearch::whereIn('id',$id)->save([
- 'is_del'=>0,
+ 'is_del'=>1,
]);
$this->success('删除成功');