wupengfei 2 vuotta sitten
vanhempi
commit
f37f01adff
1 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  1. 3 1
      application/api/controller/Order.php

+ 3 - 1
application/api/controller/Order.php

@@ -47,10 +47,11 @@ class Order extends Base
             $pay_type = input('pay_type','wx');
             $from = input('from','wx');
             if (!$id || $num <= 0) $this->error('参数错误');;
-            $user = getMemberInfoHash($this->uid); //获取用户信息
+            $user = Db::name('store_member')->where('id',$this->uid)->find();
             if ($user['is_auth']==0) $this->error('请实名认证后购买!');
             $coll_info = getCollectionInfoHash($id);
             if ($coll_info['is_deleted']==1 || $coll_info['status']==0) $this->error('藏品已下架');
+            if($pay_type != 'wallet') $this->error('请选择余额方式支付');
             // 抽签发行方式验证是否中签
             if($coll_info['issue_mode'] == 2){
                 $check_redis = new Redis();
@@ -295,6 +296,7 @@ class Order extends Base
         $body = '象链数藏购买藏品';
         $com = true;
         $retrun_data = [];
+        if($pay_type != 'wallet') $this->error('请选择余额方式支付');
         switch ($pay_type){
             case 'wx':
                 $config = retrunWxConfig();