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