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
unknown
9 years ago
Commit
7fd5a2330835d91a4ededdd472e709de14dca3ee
1 parent
9c0cdaff
男首品牌优选js
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
388 additions
and
165 deletions
.gitignore
template/www.yohobuy.com/actions/index/boys/index.phtml
template/www.yohobuy.com/partials/index/logo_brand.phtml
web-static/.gitignore
web-static/js/common/slider2.js
web-static/js/home/home.js
web-static/package.json
yohobuy/www.yohobuy.com/application/controllers/Boys.php
.gitignore
View file @
7fd5a23
...
...
@@ -27,4 +27,5 @@ coverage
css/
.sass-cache/
script/nginx/logs/
*.DS_Store
\ No newline at end of file
*.DS_Store
compile
\ No newline at end of file
...
...
template/www.yohobuy.com/actions/index/boys/index.phtml
View file @
7fd5a23
...
...
@@ -86,30 +86,7 @@
</a>
</div>
</div>
<div
class=
"logo-brand"
>
<ul
class=
"clearfix"
>
{
{#
logoBrand
}
}
{
{#if
switch
}
}
<li
class=
"logo-brand-switch"
>
<a
class=
"prev iconfont"
href=
"javascript:;"
>
60
f;</a>
<a
class=
"next iconfont"
href=
"javascript:;"
>
60
e;</a>
</li>
{
{else
}
}
{
{#if
more
}
}
<li
class=
"brand-more"
>
<a
href=
"{{href}}"
>MORE
></a>
</li>
{
{else
}
}
<li>
<a
href=
"{{href}}"
>
<img
src=
"{{img}}"
alt=
""
>
</a>
</li>
{
{/if
}
}
{
{/if
}
}
{
{/
logoBrand
}
}
</ul>
</div>
<div
class=
"logo-brand"
></div>
</div>
{
{/
preferenceBrand
}
}
...
...
template/www.yohobuy.com/partials/index/logo_brand.phtml
0 → 100644
View file @
7fd5a23
web-static/.gitignore
0 → 100644
View file @
7fd5a23
*.iml
.idea/
.ipr
.iws
*~
~*
*.diff
*.patch
*.bak
.DS_Store
Thumbs.db
.project
.*proj
.svn/
*.swp
*.swo
*.pyc
*.pyo
.build
node_modules
_site
sea-modules
spm_modules
.cache
dist
coverage
css/
.sass-cache/
script/nginx/logs/
*.DS_Store
\ No newline at end of file
...
...
web-static/js/common/slider2.js
View file @
7fd5a23
...
...
@@ -54,6 +54,7 @@ var $ = require('jquery');
j
=
0
;
if
(
_size
<=
3
)
{
$
(
this
).
find
(
'.img-brand-switch'
).
hide
();
return
;
}
for
(
j
=
0
;
j
<
$banneritems
.
length
;
j
++
)
{
...
...
web-static/js/home/home.js
View file @
7fd5a23
...
...
@@ -4,10 +4,90 @@
* @date: 2015/11/23
*/
var
$
=
require
(
'jquery'
);
var
$
=
require
(
'jquery'
),
Handlebars
=
require
(
'yoho.handlebars'
);
require
(
'../common/linkage-slider'
);
require
(
'../common/slider2'
);
$
(
'.slide-container'
).
linkageSlider
();
$
(
'.img-brand'
).
slider2
();
\ No newline at end of file
$
(
'.img-brand'
).
slider2
();
$
.
ajax
({
type
:
'GET'
,
url
:
'/boys/getBrand'
,
dataType
:
'json'
,
success
:
function
(
data
)
{
var
brandTpl
,
brandHtml
;
Handlebars
.
registerHelper
(
'brandList'
,
function
(
items
,
options
)
{
var
out
=
'<ul>'
,
i
=
0
,
item
;
for
(
i
=
0
;
i
<
items
.
length
;
i
++
)
{
item
=
options
.
fn
(
items
[
i
]);
if
(
i
%
16
===
5
||
i
===
5
)
{
//插入切换按钮的位置
out
=
out
+
'<li class="logo-brand-switch" data-page="'
+
Math
.
floor
(
i
/
16
)
+
'">'
+
'<a class="prev iconfont" href="javascript:;"></a>'
+
'<a class="next iconfont" href="javascript:;"></a></li>'
+
'<li data-page="'
+
Math
.
floor
(
i
/
16
)
+
'">'
+
item
+
'</li>'
;
}
else
if
(
i
!==
0
&&
i
%
16
===
0
)
{
//插入more的位置,more占的是下一页第一个brand的位置,所以page是i/17
out
=
out
+
'<li class="brand-more" data-page="'
+
Math
.
floor
(
i
/
17
)
+
'">'
+
'<a href="{{href}}">MORE ></a></li>'
+
'<li data-page="'
+
Math
.
floor
(
i
/
16
)
+
'">'
+
item
+
'</li>'
;
}
else
{
out
=
out
+
'<li data-page="'
+
Math
.
floor
(
i
/
16
)
+
'">'
+
item
+
'</li>'
;
}
}
//加上最后一个more, more占的是下一页第一个brand的位置,这里已经循环不到brand,所以加在末尾
return
out
+
'<li class="brand-more" data-page="'
+
Math
.
floor
(
i
/
17
)
+
'">'
+
'<a href="{{href}}">MORE ></a></li></ul>'
;
});
brandHtml
=
'\{{#brandList logoBrand}}'
+
'<a href="\{{href}}"><img src="\{{img}}" alt=""></a>'
+
'\{{/brandList}}'
;
brandTpl
=
Handlebars
.
compile
(
brandHtml
);
$
(
'.logo-brand'
).
html
(
brandTpl
(
data
));
//品牌翻页
$
(
'.logo-brand'
).
on
(
'click'
,
'.next'
,
function
()
{
var
page
=
$
(
this
).
parent
().
data
(
'page'
),
nextPage
=
0
,
totalPage
=
Math
.
ceil
(
$
(
'.logo-brand'
).
find
(
'li'
).
size
()
/
18
)
-
1
;
if
(
page
===
totalPage
)
{
nextPage
=
0
;
}
else
{
nextPage
=
page
+
1
;
}
$
(
'.logo-brand'
).
find
(
'li[data-page='
+
page
+
']'
).
find
(
'img'
).
fadeOut
(
'normal'
,
function
()
{
$
(
'.logo-brand'
).
find
(
'li'
).
hide
();
$
(
'.logo-brand'
).
find
(
'li[data-page='
+
nextPage
+
']'
).
show
().
find
(
'img'
).
fadeIn
();
});
});
$
(
'.logo-brand'
).
on
(
'click'
,
'.prev'
,
function
()
{
var
page
=
$
(
this
).
parent
().
data
(
'page'
),
prevPage
=
0
,
totalPage
=
Math
.
ceil
(
$
(
'.logo-brand'
).
find
(
'li'
).
size
()
/
18
)
-
1
;
if
(
page
===
0
)
{
prevPage
=
totalPage
;
}
else
{
prevPage
=
page
-
1
;
}
$
(
'.logo-brand'
).
find
(
'li[data-page='
+
page
+
']'
).
find
(
'img'
).
fadeOut
(
'normal'
,
function
()
{
$
(
'.logo-brand'
).
find
(
'li'
).
hide
();
$
(
'.logo-brand'
).
find
(
'li[data-page='
+
prevPage
+
']'
).
show
().
find
(
'img'
).
fadeIn
();
});
});
}
});
\ No newline at end of file
...
...
web-static/package.json
View file @
7fd5a23
...
...
@@ -13,7 +13,8 @@
"spm"
:
{
"main"
:
"index.js"
,
"dependencies"
:
{
"jquery"
:
"1.8.3"
"jquery"
:
"1.8.3"
,
"yoho.handlebars"
:
"3.0.3"
},
"devDependencies"
:
{
"expect.js"
:
"0.3.1"
...
...
@@ -34,4 +35,4 @@
"test"
:
"spm test"
,
"build"
:
"spm build"
}
}
}
\ No newline at end of file
...
...
yohobuy/www.yohobuy.com/application/controllers/Boys.php
View file @
7fd5a23
...
...
@@ -350,149 +350,17 @@ class BoysController extends AbstractAction
'href'
=>
''
,
'img'
=>
'http://img11.static.yhbimg.com/yhb-img01/2015/11/30/06/0124c4e16548b0d7aff4f0fa4ad7b13481.jpg?imageView/1/w/1150/h/450'
),
),
'logoBrand'
=>
array
(
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'switch'
=>
true
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'more'
=>
true
,
'href'
=>
'http://www.yohobuy.com'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img1
2.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86
'
'img'
=>
'http://img1
0.static.yhbimg.com/goodsimg/2015/01/30/05/01524c049077911258735906dafd6a4b45.jpg?imageMogr2/thumbnail/378x504/extent/378x504/background/d2hpdGU=/position/center/quality/90
'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img1
2.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86
'
'img'
=>
'http://img1
0.static.yhbimg.com/goodsimg/2015/01/30/05/01524c049077911258735906dafd6a4b45.jpg?imageMogr2/thumbnail/378x504/extent/378x504/background/d2hpdGU=/position/center/quality/90
'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'switch'
=>
true
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'more'
=>
true
,
'href'
=>
'http://www.yohobuy.com'
'img'
=>
'http://img10.static.yhbimg.com/goodsimg/2015/01/30/05/01524c049077911258735906dafd6a4b45.jpg?imageMogr2/thumbnail/378x504/extent/378x504/background/d2hpdGU=/position/center/quality/90'
)
)
),
...
...
@@ -559,7 +427,272 @@ class BoysController extends AbstractAction
)
)
)
);
);
$this
->
_view
->
display
(
'index'
,
$data
);
}
public
function
getBrandAction
()
{
$data
=
array
(
'logoBrand'
=>
array
(
array
(
'href'
=>
'http://www.yohobuy.com'
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2014/09/25/17/0248182b151d2d59cbeea8e73495d1607a.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/04/10/16/02963cdc1aeab10959bfeccc400aaa8de8.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/04/10/16/02963cdc1aeab10959bfeccc400aaa8de8.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
),
array
(
'href'
=>
''
,
'img'
=>
'http://img12.static.yhbimg.com/brandLogo/2015/03/18/16/020d4fec29ade8ccb6bc8e23b02c958a9d.jpg?imageView/2/w/185/h/86'
)
)
);
$this
->
echoJson
(
$data
);
}
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment