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
2015-12-04 16:43:46 +0800
Commit
ff6e22bb001d368ea484bfee884cf4063f8ab4fc
2 parents
31ce057b
dd484923
Merge branch 'develop' of
http://git.dev.yoho.cn/web/yohobuy
into develop
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
static/js/me/browse-record.js
static/js/product/newsale/hot-rank.js
static/js/me/browse-record.js
View file @
ff6e22b
...
...
@@ -112,7 +112,9 @@ $page.on('touchstart', '.del-icon', function() {
autoHide
:
true
,
fast
:
true
});
setTimeout
(
function
(){
window
.
history
.
go
(
0
);},
1000
);
setTimeout
(
function
()
{
window
.
history
.
go
(
0
);
},
1000
);
}
},
complete
:
function
()
{
...
...
static/js/product/newsale/hot-rank.js
View file @
ff6e22b
...
...
@@ -26,10 +26,11 @@ function hotrank(page, sort, tabId, notab) {
notab
:
notab
},
success
:
function
(
data
)
{
console
.
log
(
data
);
if
(
page
===
1
)
{
$
(
'.rank-main'
).
remove
();
}
if
(
data
===
' '
)
{
if
(
data
===
' '
&&
$
(
'.rank-main ul li'
).
length
<
1
)
{
$
(
'#hotRank'
).
html
(
noResult
);
}
else
{
$
(
'#hotRank'
).
append
(
data
);
...
...
Please
register
or
login
to post a comment