Authored by 梁志锋

Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into develop

... ... @@ -46,6 +46,11 @@ cHammer.on('tap', function() {
$input.val('').trigger('input');
});
$('#search').on('touchend', function() {
$(this).closest('form').submit();
return false;
});
//初始化历史搜索的内容
(function() {
var html = '',
... ...
... ... @@ -69,6 +69,13 @@ var $listNav = $('#list-nav'),
btnIntroHammer,
introHammer,
brandColHammer;
/**
* 手动触发搜索
*/
$('#search').on('touchend', function() {
$(this).closest('form').submit();
return false;
});
/**
* 筛选注册的回调,筛选子项点击后逻辑
... ...
... ... @@ -35,10 +35,10 @@
.search {
position: absolute;
top: 18rem / $pxConvertRem;
left: 515rem / $pxConvertRem;
right: 40rem / $pxConvertRem;
border: none;
background: transparent;
color: #000;
color: #666;
font-size: 30rem / $pxConvertRem;
line-height: 56rem / $pxConvertRem;
}
... ...
... ... @@ -32,8 +32,8 @@
.search {
position: absolute;
top: 7px;
right:0;
top: 2px;
right: -30px;
border: none;
background: transparent;
font-size: 16px;
... ... @@ -41,6 +41,7 @@
height: 30px;
overflow: hidden;
line-height: 30px;
color: #666;
}
}
... ...
... ... @@ -6,7 +6,7 @@
<i class="search-icon iconfont">&#xe60f;</i>
<input type="text" placeholder="搜索商品" name="query">
<i class="clear-input iconfont hide">&#xe626;</i>
<button id="search" class="search" type="submit">搜索</button>
<span id="search" class="search" type="submit">搜索</span>
</form>
</div>
<div class="search-items">
... ...
... ... @@ -6,7 +6,7 @@
<input type="text" value="{{default}}" name="query">
<input type="hidden" value="search" name="search">
<i class="clear-input iconfont hide">&#xe61a;</i>
<button id="search" class="search" type="submit">搜索</button>
<span id="search" class="search" type="submit">搜索</span>
</form>
</div>
{{/ search}}
... ...