chuweiqiang hace 1 año
padre
commit
0c6e2dadae
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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();