chuweiqiang 1 rok temu
rodzic
commit
62e48bb9fd
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      app/data/controller/api/Index.php

+ 2 - 1
app/data/controller/api/Index.php

@@ -26,7 +26,8 @@ class Index extends Auth
      * @Returned ("is_hot",desc="1:热 0:否")
      */
     public function hotsearch(){
-        $list=DataHotSearch::mk()->where('is_del',1)->where('type',1)->order('is_hot','desc')->select();
+        $list=DataHotSearch::mk()->where('is_del',1)->order('is_hot','desc')->select();
+        //->where('type',1)
         $this->success('',$list);
     }
 }