chuweiqiang 1 anno fa
parent
commit
0c6e2dadae
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  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();