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();