Toggle navigation
Toggle navigation
This project
Loading...
Sign in
wangshusheng
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to dashboard
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
uedxwg
9 years ago
Commit
801b4daab738a906524b3503febfc95d6ec46b41
1 parent
efd1573f
有货币明细列表
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
3 deletions
static/sass/me/_yoho-coin-detail.scss
template/m.yohobuy.com/actions/index/home/currency-detail.phtml
template/m.yohobuy.com/actions/index/home/helpDetail.phtml
template/m.yohobuy.com/actions/index/home/index.phtml
yohobuy/m.yohobuy.com/application/controllers/Home.php
static/sass/me/_yoho-coin-detail.scss
View file @
801b4da
.yoho-coin-detail-page
{
background
:
#f0f0f0
;
padding-bottom
:
pxToRem
(
40px
);
.money
{
width
:
100%
;
height
:
pxToRem
(
70px
);
background
:
#fff
;
margin-bottom
:
pxToRem
(
20px
);
line-height
:
pxToRem
(
70px
);
font-size
:
pxToRem
(
25px
);
text-indent
:
2em
span
{
color
:
#f00
;
font-weight
:
bold
;
}
}
.coin-detail
{
background
:
#fff
;
border-top
:
1px
solid
#e0e0e0
;
...
...
template/m.yohobuy.com/actions/index/home/currency-detail.phtml
View file @
801b4da
{
{>
layout/header
}
}
<div
class=
"yoho-coin-detail-page yoho-page"
>
{
{#
money
}
}
<div
class=
"money"
>你拥有的有货币:<span>
{
{
money
}
}</span></div>
{
{/
money
}
}
<ul
class=
"coin-detail"
>
{
{#
currency
}
}
<li>
...
...
template/m.yohobuy.com/actions/index/home/helpDetail.phtml
0 → 100644
View file @
801b4da
{
{>
layout/header
}
}
{
{
iHelp
}
}
{
{>
layout/footer
}
}
\ No newline at end of file
...
...
template/m.yohobuy.com/actions/index/home/index.phtml
View file @
801b4da
...
...
@@ -77,7 +77,7 @@
优惠券
<span
class=
"iconfont num"
>
{
{coupon_num
}
}

604
;</span>
</a>
<a
class=
"list-item"
href=
"/home/currency"
>
<a
class=
"list-item"
href=
"/home/currency
Detail
"
>
<span
class=
"iconfont icon"
>
635
;</span>
YOHO
币
<span
class=
"iconfont num"
>
{
{yoho_coin_num
}
}

604
;</span>
...
...
yohobuy/m.yohobuy.com/application/controllers/Home.php
View file @
801b4da
...
...
@@ -257,7 +257,7 @@ class HomeController extends AbstractAction
$currency
=
UserModel
::
getYohoCoinData
(
$this
->
_uid
);
$currency
[
'pageFooter'
]
=
true
;
$this
->
_view
->
display
(
'currency'
,
$currency
);
$this
->
_view
->
display
(
'currency
-new
'
,
$currency
);
}
/**
...
...
@@ -895,6 +895,7 @@ class HomeController extends AbstractAction
$this
->
_view
->
display
(
'currency-detail'
,
array
(
'currency'
=>
$currency
,
'pageFooter'
=>
true
,
'money'
=>
100
,
'currencyDetailPage'
=>
true
));
}
...
...
Please
register
or
login
to post a comment