Browse Source

sunguidong

zhangguidong 2 years ago
parent
commit
7b1f733a18
2 changed files with 3 additions and 3 deletions
  1. 1 1
      app/api/controller/Goodssku.php
  2. 2 2
      app/api/controller/Memberwithdraw.php

+ 1 - 1
app/api/controller/Goodssku.php

@@ -53,7 +53,7 @@ class Goodssku extends BaseApi
         $good_sku_data= $goods->getGoodsSkuList([['goods_id','=',$info['data']['goods_id']]]);
 
 
-        $data = $goods->getGoodsInfo(['goods_id'=>$info['data']['goods_id']],'price,pay_num1,price1,pay_num2,price2,pay_num3,price3,sku_id,introduction,goods_content,goods_image');
+        $data = $goods->getGoodsInfo(['goods_id'=>$info['data']['goods_id']],'price,pay_num1,price1,pay_num2,price2,pay_num3,price3,sku_id,introduction,goods_content,goods_image,is_free_shipping');
         $g= explode(',',$data['data']['goods_image']);
         $data['data']['show_image'] = $g[0];
 

+ 2 - 2
app/api/controller/Memberwithdraw.php

@@ -95,8 +95,8 @@ class Memberwithdraw extends BaseApi
 			"bank_name" => $bank_name,
 			"account_number" => $account_number,
 			"apply_money" => $apply_money,
-                    "mobile" => $mobile,
-                    "app_type" => $app_type
+            "mobile" => $mobile,
+            "app_type" => $app_type
 		);
 		$result = $withdraw_model->apply($data);
         $member_account_modle = new \app\model\member\MemberAccount();