...
|
...
|
@@ -15,6 +15,10 @@ use LibModels\Web\Home\UserData; |
|
|
*/
|
|
|
class PayController extends WebAction
|
|
|
{
|
|
|
|
|
|
// 存储的UID键名
|
|
|
const SESSION_UID_KEY = 'payUserid';
|
|
|
|
|
|
/**
|
|
|
* 订单已完成,跳到支付
|
|
|
*/
|
...
|
...
|
@@ -26,7 +30,7 @@ class PayController extends WebAction |
|
|
$this->go( Helpers::url('/signin.html', array('refer' => $this->server('HTTP_REFERER', SITE_MAIN))) );
|
|
|
}
|
|
|
// 将用户UID存入session中以便支付成功回调使用
|
|
|
$this->setSession('payUserid', $uid);
|
|
|
$this->setSession(self::SESSION_UID_KEY, $uid);
|
|
|
|
|
|
// 订单号
|
|
|
$orderCode = $this->get('order_code', $this->get('ordercode'));
|
...
|
...
|
|