소스 검색

抽中礼物也有大奖

lizhen_gitee 1 년 전
부모
커밋
634ba9196c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      application/api/controller/Eggnew.php

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

@@ -276,7 +276,7 @@ class Eggnew extends Api
         }
 
         // 返回抽到的礼物列表
-        $list = \app\common\model\EggDo::where(["do_no"=>$do_no])->select();
+        $list = Db::name('egg_do')->alias('do')->join('gift','do.gift_id = gift.id','LEFT')->field('do.*,gift.is_big')->where('do.do_no',$do_no)->select();
 
         $this->success("获取成功!",$list);
     }