|
@@ -51,12 +51,6 @@ class Vip extends Core
|
|
|
Dever::alert('您输入的手机号还未注册');
|
|
|
}
|
|
|
|
|
|
- if ($type == 'wechat') {
|
|
|
- $wechat = Dever::db('passport/wechat')->one(array('uid' => $this->data['uid'], 'type' => 1, 'system_id' => $this->data['system']));
|
|
|
- } elseif ($type != 'alipay') {
|
|
|
- Dever::alert('请传入正确的信息');
|
|
|
- }
|
|
|
-
|
|
|
$source_type = Dever::input('source_type');
|
|
|
|
|
|
if ($source_type == 'ios') {
|
|
@@ -85,6 +79,12 @@ class Vip extends Core
|
|
|
//$account_id = $cate['pay_id'];
|
|
|
}
|
|
|
|
|
|
+ if ($type == 'wechat') {
|
|
|
+ $wechat = Dever::db('passport/wechat')->one(array('uid' => $this->data['uid'], 'type' => 1, 'system_id' => $this->data['system']));
|
|
|
+ } elseif ($type != 'alipay') {
|
|
|
+ Dever::alert('请传入正确的信息');
|
|
|
+ }
|
|
|
+
|
|
|
$order_id = $this->createOrder();
|
|
|
|
|
|
$order_data['cate_id'] = $cate['id'];
|