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
Email Patches
Plain Diff
Browse Files
Authored by
hf
9 years ago
Commit
aeb961d970c56672c3d69f52c008f4d2630dff07
1 parent
b13941cd
code review by hf: format currency and detail code
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
33 deletions
template/m.yohobuy.com/actions/index/home/i-help.phtml → template/m.yohobuy.com/actions/index/home/help.phtml
template/m.yohobuy.com/actions/index/home/index.phtml
yohobuy/m.yohobuy.com/application/controllers/Home.php
yohobuy/m.yohobuy.com/application/models/Index/User.php
template/m.yohobuy.com/actions/index/home/
i-
help.phtml → template/m.yohobuy.com/actions/index/home/help.phtml
View file @
aeb961d
template/m.yohobuy.com/actions/index/home/index.phtml
View file @
aeb961d
...
...
@@ -106,15 +106,13 @@
<span
class=
"iconfont num"
>
604
;</span>
</a>
</div>
{
{!
<div
class=
"group-list"
>
<a
class=
"list-item"
href=
"/h
elp.html
"
>
<a
class=
"list-item"
href=
"/h
ome/help
"
>
<span
class=
"iconfont icon"
>
639
;</span>
帮助
<span
class=
"iconfont num"
>
604
;</span>
</a>
</div>
}}
{
{>
product/recommend-for-you
}
}
{
{>
product/suspend-cart
}
}
...
...
yohobuy/m.yohobuy.com/application/controllers/Home.php
View file @
aeb961d
...
...
@@ -849,32 +849,31 @@ class HomeController extends AbstractAction
));
}
/**
* 帮助中心列表页
*/
/**
* 帮助中心列表页
*/
public
function
helpAction
()
{
{
$service
=
Home\HelpModel
::
serviceInfo
();
$this
->
setTitle
(
'帮助中心'
);
$this
->
setNavHeader
(
'帮助中心'
);
$data
=
array
(
'iHelp'
=>
$service
,
'iHelp'
=>
$service
,
);
$this
->
_view
->
display
(
'
i-
help'
,
$data
);
$this
->
_view
->
display
(
'help'
,
$data
);
}
/**
* 帮助中心列表详细信息
*/
public
function
helpDetailAction
()
public
function
helpDetailAction
()
{
$caption
=
$this
->
get
(
'caption'
,
'帮助中心'
);
$code
=
$this
->
get
(
'code'
,
0
);
if
(
empty
(
$code
))
{
$this
->
error
();
}
$this
->
setTitle
(
$caption
);
$this
->
setNavHeader
(
$caption
);
...
...
@@ -883,27 +882,24 @@ class HomeController extends AbstractAction
));
}
/**
/**
* YOHO币详情 新版
*/
public
function
currencyDetailAction
()
{
// 审判跳转登录页
$this
->
auditJumpLogin
();
$this
->
setTitle
(
'YOHO币'
);
$this
->
setNavHeader
(
'YOHO币'
,
true
,
false
);
$data
[
'money'
]
=
'0'
;
$page
=
$this
->
post
(
'page'
,
1
);
$size
=
$this
->
post
(
'size'
,
20
);
// $data = UserModel::getYohoCoinLists($this->_uid,$page,$size);
$data
=
UserModel
::
getYohoCoinLists
(
3965746
,
$page
,
$size
);
$data
=
UserModel
::
getYohoCoinLists
(
$this
->
_uid
,
0
,
20
);
$this
->
_view
->
display
(
'currency-detail'
,
array
(
'money'
=>
$data
[
'money'
],
'pageFooter'
=>
true
,
'currencyDetail'
=>
true
,
'currencyDetailPage'
=>
true
));
}
/**
...
...
@@ -911,18 +907,18 @@ class HomeController extends AbstractAction
*/
public
function
ajaxCurrencyDetailAction
()
{
$data
[
'list'
]
=
array
();
$data
[
'money'
]
=
0
;
$page
=
$this
->
post
(
'page'
,
1
);
$size
=
$this
->
post
(
'size'
,
20
);
$data
=
UserModel
::
getYohoCoinLists
(
$this
->
_uid
,
$page
,
$size
);
//$data = UserModel::getYohoCoinLists(3965746,$page,$size);
$this
->
_view
->
display
(
'ajax-currency-detail'
,
array
(
'currency'
=>
$data
[
'list'
],
'pageFooter'
=>
true
,
'currencyDetailPage'
=>
true
));
if
(
$this
->
isAjax
())
{
$uid
=
$this
->
getUid
();
$page
=
$this
->
post
(
'page'
,
1
);
$data
=
UserModel
::
getYohoCoinLists
(
$uid
,
$page
,
20
);
$this
->
_view
->
display
(
'ajax-currency-detail'
,
array
(
'currency'
=>
$data
[
'list'
],
'pageFooter'
=>
true
,
'currencyDetailPage'
=>
true
));
}
else
{
echo
' '
;
}
}
}
...
...
yohobuy/m.yohobuy.com/application/models/Index/User.php
View file @
aeb961d
...
...
@@ -379,7 +379,7 @@ class UserModel
public
static
function
getYohoCoinLists
(
$uid
,
$page
,
$limit
)
{
$result
=
array
();
$data
[
'money'
]
=
'0'
;
// 调用接口获取YOHO币
$yohoCoin
=
UserData
::
yohoCoinData
(
$uid
,
$page
,
$limit
,
'post'
);
// 处理YOHO币数据
...
...
@@ -396,6 +396,7 @@ class UserModel
}
}
$data
[
'list'
]
=
$result
;
return
$data
;
}
...
...
Please
register
or
login
to post a comment