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
Plain Diff
Browse Files
Authored by
hf
9 years ago
Commit
4015699e06e7b265e725f705e35cfa3936bd745b
2 parents
3acc60b7
99cce7ba
Merge branch 'develop'
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
6 deletions
static/js/guang/detail.js
static/sass/_good.scss
static/sass/index/_search.scss
yohobuy/m.yohobuy.com/application/models/Category/Class.php
yohobuy/m.yohobuy.com/application/models/Product/List.php
yohobuy/m.yohobuy.com/application/modules/Guang/controllers/Info.php
static/js/guang/detail.js
View file @
4015699
...
...
@@ -95,7 +95,7 @@ function thumbTouchEvt(e) {
},
400
);
}
myScroll
.
refresh
();
myScroll
&&
myScroll
.
refresh
();
}
if
(
isIphone
)
{
...
...
static/sass/_good.scss
View file @
4015699
...
...
@@ -75,7 +75,7 @@
img
{
display
:
block
;
width
:
100%
;
height
:
366rem
/
$pxConvertRem
;
max-
height
:
366rem
/
$pxConvertRem
;
}
.few-tag
{
...
...
static/sass/index/_search.scss
View file @
4015699
...
...
@@ -34,12 +34,13 @@
.search
{
position
:
absolute
;
top
:
20
rem
/
$pxConvertRem
;
top
:
16
rem
/
$pxConvertRem
;
right
:
12rem
/
$pxConvertRem
;
border
:
none
;
background
:
transparent
;
color
:
#b2b2b2
;
font-size
:
32rem
/
$pxConvertRem
;
line-height
:
64rem
/
$pxConvertRem
;
}
}
...
...
yohobuy/m.yohobuy.com/application/models/Category/Class.php
View file @
4015699
...
...
@@ -46,7 +46,7 @@ class ClassModel
$oneClass
=
array
();
$item
=
array
();
foreach
(
$data
[
'data'
]
as
$k
=>
$v
)
{
$oneClass
=
array
(
'name'
=>
ucfirst
(
$k
),
'ca'
=>
array
());
$oneClass
=
array
(
'name'
=>
ucfirst
(
rtrim
(
$k
,
's'
)
),
'ca'
=>
array
());
foreach
(
$v
as
$val
)
{
$item
=
array
();
...
...
yohobuy/m.yohobuy.com/application/models/Product/List.php
View file @
4015699
...
...
@@ -89,7 +89,7 @@ class ListModel
// 获取品牌banner的数据, 有缓存1小时
$bannerData
=
BrandData
::
getBrandBanner
(
$id
);
if
(
isset
(
$bannerData
[
'data'
][
'banner'
]))
{
$result
[
'banner'
]
=
Helpers
::
getImageUrl
(
$bannerData
[
'data'
][
'banner'
],
640
,
75
);
$result
[
'banner'
]
=
Helpers
::
getImageUrl
(
$bannerData
[
'data'
][
'banner'
],
640
,
150
);
}
return
$result
;
...
...
yohobuy/m.yohobuy.com/application/modules/Guang/controllers/Info.php
View file @
4015699
...
...
@@ -151,7 +151,7 @@ class InfoController extends AbstractAction
if
(
!
empty
(
$detail
[
'getArticle'
][
'tags'
]))
{
foreach
(
$detail
[
'getArticle'
][
'tags'
]
as
$value
)
{
if
(
!
$isApp
)
{
$value
[
'url'
]
=
Helpers
::
url
(
'/tags/index'
,
array
(
'query
=
'
=>
$value
[
'name'
]),
'guang'
);
$value
[
'url'
]
=
Helpers
::
url
(
'/tags/index'
,
array
(
'query'
=>
$value
[
'name'
]),
'guang'
);
}
$data
[
'relatedTag'
][]
=
$value
;
}
...
...
Please
register
or
login
to post a comment