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
毕凯
9 years ago
Commit
17728664cad538f36766887e09ae0c110209a7f7
2 parents
f8d72ce3
79a3b510
Merge branch 'release/4.5' of git.yoho.cn:fe/YOHOBUYWAP into release/4.5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
14 deletions
static/js/category/brand.js
static/js/category/write-search.js
template/m.yohobuy.com/actions/category/brand/search.phtml
static/js/category/brand.js
View file @
1772866
...
...
@@ -353,8 +353,16 @@ if ($('.brand-search-page').length > 0) {
continue
;
}
locate
=
history
.
indexOf
(
'http://'
);
brand
=
history
.
substr
(
0
,
locate
);
url
=
history
.
substr
(
locate
,
history
.
length
-
locate
);
if
(
locate
===
-
1
)
{
brand
=
history
;
url
=
''
;
}
else
{
brand
=
history
.
substr
(
0
,
locate
);
url
=
history
.
substr
(
locate
,
history
.
length
-
locate
);
}
html
+=
'<li><a href="'
+
url
+
'">'
+
brand
+
'</li>'
;
$historySearch
.
removeClass
(
'hide'
);
...
...
static/js/category/write-search.js
View file @
1772866
...
...
@@ -45,7 +45,7 @@ function bindWirteLocal($brandList) {
e
.
preventDefault
();
if
(
$
(
'.net-
search
'
).
length
>
0
)
{
if
(
$
(
'.net-
history
'
).
length
>
0
)
{
addHistory
(
brandName
,
brandId
,
brandDomain
);
location
.
href
=
url
;
return
;
...
...
template/m.yohobuy.com/actions/category/brand/search.phtml
View file @
1772866
...
...
@@ -17,17 +17,19 @@
<div
class=
"search-brand-page"
>
<div
class=
"search-items"
>
{
{#if
history
}
}
<div
class=
"history-search net-search"
>
<h
3
><span
class=
"iconfont"
>
64
a;</span>最近搜索
<button
id=
"clear-history"
class=
"clear-icon iconfont"
>
64
c;</button>
</h
3
>
<ul
class=
"history clearfix"
>
{
{#
history
}
}
<li>
<a
href=
"{{url}}"
brandName=
"{{name}}"
brandId=
"{{brandId}}"
brandDomain=
"{{brandDomain}}"
>
{
{name
}
}</a>
</li>
{
{/
history
}
}
</ul>
<div
class=
"net-history"
>
<div
class=
"history-search net-search"
>
<h
3
><span
class=
"iconfont"
>
64
a;</span>最近搜索
<button
id=
"clear-history"
class=
"clear-icon iconfont"
>
64
c;</button>
</h
3
>
<ul
class=
"history clearfix"
>
{
{#
history
}
}
<li>
<a
href=
"{{url}}"
brandName=
"{{name}}"
brandId=
"{{brandId}}"
brandDomain=
"{{brandDomain}}"
>
{
{name
}
}</a>
</li>
{
{/
history
}
}
</ul>
</div>
</div>
{
{else
}
}
<div
class=
"history-search local-search hide"
>
...
...
Please
register
or
login
to post a comment