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
Lynnic
9 years ago
Commit
17d829c0d156538bb20e327c6a099e500f80d7cf
2 parents
a49752ad
7c666001
Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into develop
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
4 deletions
static/js/home/maybe-like.js
static/js/product/list.js
static/sass/me/_order.scss
template/m.yohobuy.com/partials/me/order/good.phtml
yohobuy/m.yohobuy.com/application/models/Product/Detail.php
static/js/home/maybe-like.js
View file @
17d829c
...
...
@@ -138,7 +138,7 @@ $('.maybe-like p').on('touchstart', function(e) {
});
function
scrollHandler
()
{
if
(
$
(
window
).
scrollTop
()
+
winH
>=
$
(
document
).
height
()
-
5
0
)
{
if
(
$
(
window
).
scrollTop
()
+
winH
>=
$
(
document
).
height
()
-
20
0
)
{
search
();
}
}
...
...
static/js/product/list.js
View file @
17d829c
...
...
@@ -425,6 +425,13 @@ if ($brandHeader.length > 0) {
success
:
function
(
data
)
{
if
(
data
.
code
===
200
)
{
$this
.
toggleClass
(
'coled'
);
//提示
if
(
opt
===
'ok'
)
{
tip
.
show
(
'添加收藏成功'
);
}
else
{
tip
.
show
(
'取消收藏成功'
);
}
}
else
if
(
data
.
code
===
400
)
{
location
.
href
=
data
.
data
;
//未登录跳转登录页
}
else
{
...
...
static/sass/me/_order.scss
View file @
17d829c
...
...
@@ -204,6 +204,7 @@
position
:
absolute
;
top
:
20rem
/
$pxConvertRem
;
right
:
30rem
/
$pxConvertRem
;
text-align
:
right
;
}
.price
{
...
...
@@ -216,4 +217,8 @@
text-align
:
right
;
line-height
:
45rem
/
$pxConvertRem
;
}
.appear-date
{
color
:
#f00
;
}
}
\ No newline at end of file
...
...
template/m.yohobuy.com/partials/me/order/good.phtml
View file @
17d829c
<div class="order-good" data-id=
{{id}}
>
<div class="order-good" data-id=
"{{id}}"
>
<div class="thumb-wrap">
<img class="thumb lazy" data-original=
{{thumb}}
>
<img class="thumb lazy" data-original=
"{{thumb}}"
>
<p class="tag{{#if gift}} gift-tag{{/if}}{{#if advanceBuy}} advance-buy-tag{{/if}}"></p>
</div>
<div class="deps">
...
...
@@ -25,6 +25,9 @@
<span class="count">
×{{count}}
</span>
{{#if appearDate}}
<span class="appear-date">上市期:{{appearDate}}</span>
{{/if}}
</p>
</div>
</div>
\ No newline at end of file
...
...
yohobuy/m.yohobuy.com/application/models/Product/Detail.php
View file @
17d829c
...
...
@@ -380,7 +380,6 @@ class DetailModel
'desc'
=>
strtr
(
$productIntro
,
array
(
'\r\n\t'
=>
''
,
'</p>'
=>
''
,
'<br />'
=>
"
\r\n
"
,
'<img src='
=>
"<img class=
\"
lazy
\"
src=
\"
data:image/gif;base64,R0lGODlhAQABAJEAAAAAAP///93d3f///yH5BAEAAAMALAAAAAABAAEAAAICVAEAOw==
\"
data-original="
,
)),
);
...
...
Please
register
or
login
to post a comment