Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
yangyang
9 years ago
Commit
06955cebeb551b691935a133ced825c3fa4512f0
1 parent
8787cebd
渲染模板
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
yohobuy/m.yohobuy.com/application/controllers/Home.php
yohobuy/m.yohobuy.com/application/controllers/Home.php
View file @
06955ce
...
...
@@ -479,7 +479,7 @@ class HomeController extends AbstractAction
//ajax请求订单页面
public
function
get
o
rderAction
()
{
public
function
get
O
rderAction
()
{
//判断是不是ajax请求
if
(
!
$this
->
isAjax
())
{
$this
->
error
();
...
...
@@ -492,8 +492,6 @@ class HomeController extends AbstractAction
$yh_channel
=
$this
->
get
(
'yh_channel'
,
1
);
$uid
=
$this
->
getUid
();
$uid
=
'7566245'
;
//测试用
$this
->
setTitle
(
'我的订单'
);
$this
->
setNavHeader
(
'我的订单'
);
//调用模型层getOrder方法获得并处理数据
$data
=
OrderModel
::
getOrder
(
$type
,
$page
,
$limit
,
$gender
,
$yh_channel
,
$uid
);
//如果没有订单数据,就给一个随便逛逛链接
...
...
@@ -505,10 +503,9 @@ class HomeController extends AbstractAction
$order
[
'walkwayUrl'
]
=
'http://www.baidu.com'
;
}
//渲染模板
$this
->
_view
->
display
(
'order'
,
array
(
$this
->
_view
->
display
(
'order
Content
'
,
array
(
'order'
=>
$order
,
'orderPage'
=>
true
,
'pageFooter'
=>
true
));
}
...
...
Please
register
or
login
to post a comment