chuweiqiang 1 年間 前
コミット
0c6e2dadae
1 ファイル変更2 行追加0 行削除
  1. 2 0
      application/api/controller/Books.php

+ 2 - 0
application/api/controller/Books.php

@@ -153,6 +153,7 @@ class Books extends Api
         $list['is_certificate'] = 1;
         $list['is_pay'] = 1;
         $list['is_free'] = 1;
+        $list['cer'] = null;
         if($list['price'] <= 0){
             $list['is_free'] = 0;
         }
@@ -168,6 +169,7 @@ class Books extends Api
                 ->where('is_deleted',1)->find();
             if($cer){
                 $list['is_certificate'] = 0;
+                $list['cer'] = $cer;
             }
 
             $good = $UserGoods->where('user_id',$uid)->where('goods_type',0)->where('goods_id',$id)->find();