Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
Rock Zhang
9 years ago
Commit
21aa5c5cd98a328c601211bdbc68f52810a7d4b0
2 parents
9d014a1c
eee57879
Merge branch 'develop/wap' into beta/wap
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
yohobuy/m.yohobuy.com/application/modules/Cart/controllers/Index.php
yohobuy/m.yohobuy.com/application/modules/Cart/controllers/Index.php
View file @
21aa5c5
...
...
@@ -283,8 +283,8 @@ class IndexController extends AbstractAction
// 审判跳转登录页
$this
->
auditJumpLogin
();
$this
->
setTitle
(
'确认订单'
);
$this
->
setNavHeader
(
'确认订单'
,
Helpers
::
url
(
'/cart/index/index'
),
false
);
// 不显示右上角home按钮
// 返回地址
$returnUrl
=
Helpers
::
url
(
'/cart/index/index'
);
$cartType
=
$this
->
get
(
'cartType'
,
''
);
$cookieData
=
$this
->
getCookie
(
'order-info'
,
null
);
...
...
@@ -299,6 +299,9 @@ class IndexController extends AbstractAction
$sku
=
$this
->
get
(
'sku'
,
''
);
$skn
=
$this
->
get
(
'skn'
,
''
);
$buyNumber
=
$this
->
get
(
'buy_number'
,
1
);
if
(
$limitProductCode
)
{
$returnUrl
=
$this
->
server
(
'HTTP_REFERER'
,
$returnUrl
);
}
// 购物车商品为空跳转到购物车页面
$uid
=
$this
->
getUid
(
true
);
...
...
@@ -320,6 +323,9 @@ class IndexController extends AbstractAction
'orderEnsure'
=>
$order
);
$this
->
setTitle
(
'确认订单'
);
$this
->
setNavHeader
(
'确认订单'
,
$returnUrl
,
false
);
// 不显示右上角home按钮
$this
->
_view
->
display
(
'order-ensure'
,
$data
);
}
...
...
Please
register
or
login
to post a comment