瀏覽代碼

vip专属礼物

lizhen_gitee 1 年之前
父節點
當前提交
362c33da8d
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      application/api/controller/Gift.php

+ 4 - 0
application/api/controller/Gift.php

@@ -28,6 +28,10 @@ class Gift extends Api
         // 获取基本信息
         $where = ['is_show'=>1];
 
+        if(!$this->is_vip($this->auth->id)){
+            $where['is_vip'] = 0;
+        }
+
         $giftList = Db::name('gift')->where($where)->order("weigh","desc")->select();
         $giftList = list_domain_image($giftList,['image','special']);
         $this->success("获取成功!",$giftList);