Showing
4 changed files
with
4 additions
and
4 deletions
@@ -11,7 +11,7 @@ class CouponsController extends WebAction | @@ -11,7 +11,7 @@ class CouponsController extends WebAction | ||
11 | public function indexAction() | 11 | public function indexAction() |
12 | { | 12 | { |
13 | //判断是否登录 | 13 | //判断是否登录 |
14 | - $uid = $this->auditJumpLogin(); | 14 | + $uid = $this->auditJumpLogin(true, Helpers::url('/home/coupons')); |
15 | 15 | ||
16 | //头部导航 | 16 | //头部导航 |
17 | $channel = Helpers::getChannelNameByCookie(); | 17 | $channel = Helpers::getChannelNameByCookie(); |
@@ -16,7 +16,7 @@ class IndexController extends WebAction | @@ -16,7 +16,7 @@ class IndexController extends WebAction | ||
16 | */ | 16 | */ |
17 | public function indexAction() | 17 | public function indexAction() |
18 | { | 18 | { |
19 | - $uid = $this->auditJumpLogin(); | 19 | + $uid = $this->auditJumpLogin(true, Helpers::url('/home')); |
20 | //头部导航 | 20 | //头部导航 |
21 | $channel = Helpers::getChannelNameByCookie(); | 21 | $channel = Helpers::getChannelNameByCookie(); |
22 | $this->setWebNavHeader($channel); | 22 | $this->setWebNavHeader($channel); |
@@ -19,7 +19,7 @@ class messageController extends WebAction | @@ -19,7 +19,7 @@ class messageController extends WebAction | ||
19 | public function indexAction() | 19 | public function indexAction() |
20 | { | 20 | { |
21 | //判断是否登录 | 21 | //判断是否登录 |
22 | - $uid = $this->auditJumpLogin(); | 22 | + $uid = $this->auditJumpLogin(true, Helpers::url('/home/message')); |
23 | //头部导航 | 23 | //头部导航 |
24 | $channel = Helpers::getChannelNameByCookie(); | 24 | $channel = Helpers::getChannelNameByCookie(); |
25 | $this->setWebNavHeader($channel); | 25 | $this->setWebNavHeader($channel); |
@@ -19,7 +19,7 @@ class OrdersController extends WebAction | @@ -19,7 +19,7 @@ class OrdersController extends WebAction | ||
19 | public function indexAction() | 19 | public function indexAction() |
20 | { | 20 | { |
21 | //判断是否登录 | 21 | //判断是否登录 |
22 | - $uid = $this->auditJumpLogin(); | 22 | + $uid = $this->auditJumpLogin(true, Helpers::url('/home/orders')); |
23 | 23 | ||
24 | //头部导航 | 24 | //头部导航 |
25 | $channel = Helpers::getChannelNameByCookie(); | 25 | $channel = Helpers::getChannelNameByCookie(); |
-
Please register or login to post a comment