chuweiqiang 1 년 전
부모
커밋
62e48bb9fd
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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:否")
      * @Returned ("is_hot",desc="1:热 0:否")
      */
      */
     public function hotsearch(){
     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);
         $this->success('',$list);
     }
     }
 }
 }