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