Authored by 梁志锋

Merge remote-tracking branch 'remotes/origin/release/4.7'

... ... @@ -4105,7 +4105,7 @@ function inputAction() {
// 联动搜索
$.ajax({
url: '/search/fuzzyDatas',
url: '/index/search/fuzzyDatas',
data: {
keyword: $input.val()
},
... ... @@ -7091,8 +7091,7 @@ function inputAction() {
// 联动搜索
$.ajax({
//如果不写死,用品牌名访问就会出错,本地开发写/search/fuzzyDatas即可
url: '//m.yohobuy.com/search/fuzzyDatas',
url: '/index/search/fuzzyDatas',
data: {
keyword: $input.val()
},
... ...
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
... ... @@ -74,7 +74,7 @@ function inputAction() {
// 联动搜索
$.ajax({
url: '/search/fuzzyDatas',
url: '/index/search/fuzzyDatas',
data: {
keyword: $input.val()
},
... ...
... ... @@ -90,8 +90,7 @@ function inputAction() {
// 联动搜索
$.ajax({
//如果不写死,用品牌名访问就会出错,本地开发写/search/fuzzyDatas即可
url: '//m.yohobuy.com/search/fuzzyDatas',
url: '/index/search/fuzzyDatas',
data: {
keyword: $input.val()
},
... ...
... ... @@ -150,40 +150,41 @@
}
}
.search-associate {
width: 100%;
background: #f8f8f8;
display: none;
position: absolute;
z-index: 1;
}
li {
height: 84px;
line-height: 84px;
width: 100%;
padding: 0 20px;
clear: both;
margin-bottom: 5px;
background: #fff;
box-sizing: border-box;
}
.search-associate {
width: 100%;
background: #f8f8f8;
display: none;
position: absolute;
z-index: 1;
li {
height: 84px;
line-height: 84px;
width: 100%;
padding: 0 20px;
clear: both;
margin-bottom: 5px;
background: #fff;
box-sizing: border-box;
}
.keyword {
float: left;
font-size: 30px;
}
.keyword {
float: left;
font-size: 30px;
}
.count {
float: right;
color: #b0b0b0;
font-size: 18px;
.count {
float: right;
color: #b0b0b0;
font-size: 18px;
i {
font-size: 12PX;
margin-left: 10px;
position: relative;
top: 3px;
}
i {
font-size: 12PX;
margin-left: 10px;
position: relative;
top: 3px;
}
}
}
... ...