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
梁志锋
9 years ago
Commit
7bc5ae32a53940473aee9c5ec6534236b2d7b98c
1 parent
e23a05be
删除不用的代码
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
31 deletions
yohobuy/m.yohobuy.com/application/modules/Category/controllers/Focus.php
yohobuy/m.yohobuy.com/application/modules/Category/controllers/Focus.php
deleted
100644 → 0
View file @
e23a05b
<?php
use
Action\AbstractAction
;
use
LibModels\Wap\Category\FocusData
;
/**
* 品牌
*/
class
FocusController
extends
AbstractAction
{
public
function
indexAction
()
{
// 获取关注数据
$gender
=
$this
->
get
(
'gender'
,
'1,3'
);
$focusData
=
FocusData
::
getFocusData
(
0
,
$gender
);
$focus
=
array
();
if
(
$focusData
[
'code'
]
==
200
)
{
$focus
=
$focusData
[
'data'
];
}
echo
'<pre>'
;
var_dump
(
$focus
);
exit
;
$this
->
_view
->
assign
(
'title'
,
'YOHO!BUY 有货'
);
$this
->
_view
->
display
(
'class'
,
compact
(
'focus'
));
}
}
Please
register
or
login
to post a comment