Ver Fonte

抽奖榜单也区分类型

lizhen_gitee há 1 ano atrás
pai
commit
19aceabafe
1 ficheiros alterados com 2 adições e 1 exclusões
  1. 2 1
      application/api/controller/Eggnew.php

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

@@ -302,10 +302,11 @@ class Eggnew extends Api
         $today = strtotime(date("Y-m-d"));
         $where = [];
         $where["a.createtime"] = ["gt",$today];
-        $where["a.type"] = $type;
+        $where["jp.type"] = $type;
 
         $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","left")
+            ->join("egg_jackpot jp","a.Jackpot_id = jp.id","left")
             ->where($where)
 //            ->group("a.user_id")
             ->order("money","desc")