...
|
...
|
@@ -188,7 +188,13 @@ class Vip extends Frontend |
|
|
$this->error('查询为空');
|
|
|
}
|
|
|
if($data['status'] != '1'){
|
|
|
$this->success('SUCCESS',url("index/vip/success"));
|
|
|
$url = url('index/vip/pay_success');
|
|
|
$storeModel = new Store();
|
|
|
$store = $storeModel->findData(['user_id'=>$data['user_id']]);
|
|
|
if($store){
|
|
|
$url = url("index/member/member");
|
|
|
}
|
|
|
$this->success('SUCCESS',$url);
|
|
|
}
|
|
|
$this->error('尚未支付');
|
|
|
}
|
...
|
...
|
|