Parcourir la source

抽奖榜单也区分类型

lizhen_gitee il y a 1 an
Parent
commit
673cbceb7e
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. 4 1
      application/api/controller/Eggnew.php

+ 4 - 1
application/api/controller/Eggnew.php

@@ -297,12 +297,15 @@ class Eggnew extends Api
 
 
     //手气榜单
     //手气榜单
     public function getRankList(){
     public function getRankList(){
+        $type = $this->request->request("type",1);
+
         $today = strtotime(date("Y-m-d"));
         $today = strtotime(date("Y-m-d"));
         $where = [];
         $where = [];
         $where["a.createtime"] = ["gt",$today];
         $where["a.createtime"] = ["gt",$today];
+        $where["a.type"] = $type;
 
 
         $ranklist = \app\common\model\EggDo::alias("a")->field("a.user_id,a.image,a.price as money,a.createtime,u.nickname")
         $ranklist = \app\common\model\EggDo::alias("a")->field("a.user_id,a.image,a.price as money,a.createtime,u.nickname")
-            ->join("hx_user u","u.id = a.user_id","inner")
+            ->join("hx_user u","u.id = a.user_id","left")
             ->where($where)
             ->where($where)
 //            ->group("a.user_id")
 //            ->group("a.user_id")
             ->order("money","desc")
             ->order("money","desc")