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
biao
9 years ago
Commit
d31acf6fbd43518c7bfb959a3c16cf7c5ab97ed8
1 parent
df7261d8
update for channel page. code review by HongFei
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
6 deletions
static/sass/index/_index.scss
yohobuy/m.yohobuy.com/application/models/Index/Index.php
static/sass/index/_index.scss
View file @
d31acf6
...
...
@@ -2,6 +2,16 @@
width
:
100%
;
overflow
:
hidden
;
margin
:
0
auto
;
#yohood
{
background-color
:
transparent
;
background-image
:
image-url
(
'yohood.png'
);
background-size
:
40%
;
background-repeat
:
no-repeat
;
background-position-x
:
26%
;
background-position-y
:
36%
;
border
:
none
;
border-bottom
:
4px
solid
#fff
;
}
.index-header
{
box-sizing
:
border-box
;
padding
:
0
20rem
/
$pxConvertRem
;
...
...
yohobuy/m.yohobuy.com/application/models/Index/Index.php
View file @
d31acf6
...
...
@@ -13,14 +13,14 @@ use LibModels\Wap\Index\IndexData;
*
* @author Administrator
*/
class
IndexModel
class
IndexModel
{
public
function
getChannel
(){
public
static
function
getChannel
(){
$result
=
array
();
$result
[
'showYohood'
]
=
true
;
$data
=
IndexData
::
channelData
();
$channelList
=
array
();
if
(
$data
[
'code'
]
==
200
&&
isset
(
$data
[
'data'
][
'list'
])){
foreach
(
$data
[
'data'
][
'list'
]
as
$key
=>
$value
){
...
...
@@ -54,8 +54,8 @@ class IndexModel
}
$result
[
'channelList'
]
=
$channelList
;
}
return
$result
;
}
}
...
...
Please
register
or
login
to post a comment