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
Plain Diff
Browse Files
Authored by
ccbikai
9 years ago
Commit
c167371a4eceee1bbbc93dfd9123239bd6f1fbce
2 parents
fe024af7
49db0e38
merge code
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
10 deletions
library/Plugin/Images.php
static/.gitignore
static/js/category/index.js
template/m.yohobuy.com/partials/layout/footer.phtml
library/Plugin/Images.php
View file @
c167371
...
...
@@ -182,18 +182,22 @@ class Images
$result
=
json_decode
(
file_get_contents
(
'http://upload.static.yohobuy.com'
,
false
,
$context
),
true
);
if
(
!
empty
(
$result
[
'data'
][
'imagesList'
]))
{
$imgList
=
array
(
'imgList'
=>
array
());
if
(
count
(
$file
)
==
1
||
!
is_array
(
$file
))
{
return
self
::
getSourceUrl
(
current
(
$result
[
'data'
][
'imagesList'
]),
'suggest'
);
$imgList
[
'imgList'
][]
=
array
(
'imgUrl'
=>
self
::
getSourceUrl
(
current
(
$result
[
'data'
][
'imagesList'
]),
'suggest'
)
);
}
else
{
foreach
(
$result
[
'data'
][
'imagesList'
]
as
&
$val
)
{
$val
=
self
::
getSourceUrl
(
$val
,
'suggest'
);
$img
=
array
();
foreach
(
$result
[
'data'
][
'imagesList'
]
as
$val
)
{
$img
=
array
();
$img
[
'imgUrl'
]
=
self
::
getSourceUrl
(
$val
,
'suggest'
);
$imgList
[
'imgList'
][]
=
$img
;
}
return
$result
[
'data'
][
'imagesList'
];
}
return
$imgList
;
}
else
{
...
...
static/.gitignore
View file @
c167371
...
...
@@ -26,4 +26,5 @@ dist
coverage
css/
.sass-cache/
script/nginx/logs/
\ No newline at end of file
script/nginx/logs/
*.DS_Store
\ No newline at end of file
...
...
static/js/category/index.js
View file @
c167371
...
...
@@ -13,9 +13,8 @@ var $nav = $('.category-nav'),
$subLevelItem
=
$categoryContainer
.
find
(
'.sub-level li'
),
$primaryItem
=
$categoryContainer
.
find
(
'.primary-level li'
);
var
$curContent
=
$contents
.
not
(
'.hide'
);
var
navHammer
;
var
$curContent
=
$contents
.
not
(
'.hide'
),
navHammer
;
//初始化container高度
(
function
()
{
...
...
template/m.yohobuy.com/partials/layout/footer.phtml
View file @
c167371
...
...
@@ -28,7 +28,7 @@
a.async=
1
;
a.src=j;
m.parentNode.insertBefore(a,m);
})(window,document,'script','http://cdn.yoho.cn/yas-jssdk/
1.0
.
13
/yas.js','_yas');
})(window,document,'script','http://cdn.yoho.cn/yas-jssdk/
1.0
.
13
/yas
-debug
.js','_yas');
</script>
{
{>
layout/use
}
}
{
{>
layout/analysis
}
}
...
...
Please
register
or
login
to post a comment