...
|
...
|
@@ -682,7 +682,7 @@ function JsonPCallBack(data) { |
|
|
if (data.data.url !== '') {
|
|
|
topbanner = '<a target="_blank" href="' + data.data.url + '" class="page-top-banner"' +
|
|
|
'style="height:36px;border:none;background-image:url(' + window.unescape(data.data.src) + ');' +
|
|
|
'background-position: center;display:block;background-size:contain"> </a>';
|
|
|
'background-position: center;display:block;"> </a>';
|
|
|
} else {
|
|
|
topbanner = '<div class="noticewrapper">' +
|
|
|
'<div class="noticecontainer">' +
|
...
|
...
|
@@ -1824,7 +1824,8 @@ function init() { |
|
|
actionCover(); //初次登录弹框
|
|
|
actionAddKeyWords(); //增加关键字
|
|
|
}
|
|
|
init();
|
|
|
init();
|
|
|
|
|
|
});
|
|
|
define("js/simple-header", ["jquery"], function(require, exports, module){
|
|
|
var $ = require("jquery");
|
...
|
...
|
@@ -1960,364 +1961,366 @@ require("js/product/latest-walk"); |
|
|
require("js/product/product");
|
|
|
});
|
|
|
define("js/product/filter", ["jquery","handlebars","source-map"], function(require, exports, module){
|
|
|
/**
|
|
|
* 商品筛选逻辑
|
|
|
* @author: xuqi<qi.xu@yoho.cn>
|
|
|
* @date: 2015/12/4
|
|
|
*/
|
|
|
|
|
|
var $ = require("jquery"),
|
|
|
Handlebars = require("handlebars");
|
|
|
|
|
|
var checkUnicode = {
|
|
|
unchecked: '',
|
|
|
checked: ''
|
|
|
},
|
|
|
moreUnicode = {
|
|
|
up: '',
|
|
|
down: ''
|
|
|
};
|
|
|
|
|
|
//品牌相关变量
|
|
|
var $brandDefault = $('.brand .default'),
|
|
|
$brandPanel = $('.brand .brand-panel'),
|
|
|
$brandAttrs = $brandPanel.find('.attr'),
|
|
|
$brandMore = $('#brand-more'),
|
|
|
$brandMulti = $('#brand-multi');
|
|
|
|
|
|
var $brandMoreTxt, $brandMoreIcon;
|
|
|
|
|
|
//价格相关变量
|
|
|
var $udPrice = $('.ud-price-range'),
|
|
|
interReg = /^\d+$/,
|
|
|
$limit, $min, $max, $btn;
|
|
|
|
|
|
//分类相关变量
|
|
|
var $sortSub = $('.sort-sub-wrap');
|
|
|
|
|
|
//高级选项相关变量
|
|
|
var $seniorSubWrap = $('.senior-sub-wrap'),
|
|
|
$seniorAttrWrap = $('.senior-attr-wrap');
|
|
|
|
|
|
var seniorHoverTime, hoveredIndex;
|
|
|
|
|
|
// 尺寸 handlebars 模板
|
|
|
var sizeTmpl = '{{# size}}<a class="attr {{#if checked}}checked{{/if}}" href="{{href}}">{{name}}</a>{{/ size}}',
|
|
|
sizeCache = {}, // 缓存一下尺寸信息
|
|
|
$sizeWrap = $('.filter-box .size');
|
|
|
|
|
|
sizeTmpl = Handlebars.compile(sizeTmpl);
|
|
|
|
|
|
//清除checkbox选中状态
|
|
|
function clearChecked($checkbox) {
|
|
|
$checkbox.removeClass('checked').html(checkUnicode.unchecked);
|
|
|
}
|
|
|
|
|
|
//显示更多品牌面板
|
|
|
function brandShowMore() {
|
|
|
$brandDefault.addClass('hide');
|
|
|
$brandPanel.removeClass('hide');
|
|
|
}
|
|
|
|
|
|
//隐藏更多品牌面板
|
|
|
function brandHideMore() {
|
|
|
$brandPanel.addClass('hide');
|
|
|
$brandDefault.removeClass('hide');
|
|
|
}
|
|
|
|
|
|
//url构造&跳转
|
|
|
function uriLoc(attr, val) {
|
|
|
var href = decodeURIComponent(window.location.search),
|
|
|
query = attr + '=' + val,
|
|
|
newHref;
|
|
|
|
|
|
if (href === '') {
|
|
|
newHref = '?' + query;
|
|
|
} else {
|
|
|
newHref = href + '&' + query;
|
|
|
}
|
|
|
|
|
|
window.location.href = newHref;
|
|
|
}
|
|
|
|
|
|
//隐藏高级选项面板
|
|
|
function hideSeniorPanel(index) {
|
|
|
$seniorSubWrap.children('.senior-sub:eq(' + hoveredIndex + ')').addClass('hide');
|
|
|
$seniorAttrWrap.children('.attr:eq(' + hoveredIndex + ')').removeClass('hover');
|
|
|
hoveredIndex = -1;
|
|
|
}
|
|
|
|
|
|
//屏蔽筛选项双击文字选中
|
|
|
$('.filter-box').on('selectstart', '.attr, .brands-index span', function() {
|
|
|
return false;
|
|
|
});
|
|
|
|
|
|
//【分类】
|
|
|
$('.sort-pre').on('click', 'li', function() {
|
|
|
var $this = $(this),
|
|
|
index = $this.index(),
|
|
|
id = $this.data('id');
|
|
|
|
|
|
if ($this.hasClass('active')) {
|
|
|
|
|
|
// 选中时,再次点击取消选中
|
|
|
$this.removeClass('active');
|
|
|
$sortSub.children(':eq(' + index + ')').addClass('hide');
|
|
|
$sizeWrap.addClass('hide');
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$this.siblings('.active').removeClass('active');
|
|
|
$this.addClass('active');
|
|
|
|
|
|
$sortSub.children(':not(.hide)').addClass('hide');
|
|
|
$sortSub.children(':eq(' + index + ')').removeClass('hide');
|
|
|
|
|
|
if (!$sizeWrap.data('load')) {
|
|
|
if (sizeCache[id]) {
|
|
|
$sizeWrap.find('.attr-content').html(sizeCache[id]);
|
|
|
$sizeWrap.removeClass('hide');
|
|
|
} else {
|
|
|
$.ajax({
|
|
|
url: '/product/search/sortSize',
|
|
|
data: {
|
|
|
msort: id
|
|
|
}
|
|
|
}).then(function(res) {
|
|
|
if ($.type(res) === 'array' && res.length) {
|
|
|
sizeCache[id] = sizeTmpl({
|
|
|
size: res
|
|
|
});
|
|
|
$sizeWrap.find('.attr-content').html(sizeCache[id]);
|
|
|
$sizeWrap.removeClass('hide');
|
|
|
} else {
|
|
|
$sizeWrap.addClass('hide');
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【品牌】
|
|
|
if ($brandMore.length > 0) {
|
|
|
$brandMoreTxt = $brandMore.children('em');
|
|
|
$brandMoreIcon = $brandMore.children('.iconfont');
|
|
|
}
|
|
|
|
|
|
//【品牌】多选
|
|
|
$brandMulti.click(function() {
|
|
|
if ($brandPanel.css('display') === 'none') {
|
|
|
|
|
|
//显示品牌面板
|
|
|
$brandMore.trigger('click');
|
|
|
}
|
|
|
|
|
|
$brandPanel.addClass('multi'); //显示出checkbox
|
|
|
$(this).addClass('hide');
|
|
|
});
|
|
|
|
|
|
//【品牌】更多
|
|
|
$brandMore.click(function() {
|
|
|
var $this = $(this);
|
|
|
|
|
|
if ($this.hasClass('more')) {
|
|
|
brandHideMore();
|
|
|
|
|
|
$brandMoreTxt.text('更多');
|
|
|
$brandMoreIcon.html(moreUnicode.down);
|
|
|
} else {
|
|
|
brandShowMore();
|
|
|
|
|
|
$brandMoreTxt.text('收起');
|
|
|
$brandMoreIcon.html(moreUnicode.up);
|
|
|
}
|
|
|
|
|
|
$(this).toggleClass('more');
|
|
|
});
|
|
|
|
|
|
//【品牌】索引
|
|
|
$('.brands-index').on('mouseenter', 'span', function() {
|
|
|
var $this = $(this),
|
|
|
index = $this.data('index');
|
|
|
|
|
|
if ($this.hasClass('hover')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$this.siblings('span.hover').removeClass('hover');
|
|
|
$this.addClass('hover');
|
|
|
|
|
|
if ($this.index() === 0) {
|
|
|
|
|
|
//全部
|
|
|
$brandAttrs.removeClass('hide');
|
|
|
} else {
|
|
|
$brandAttrs.addClass('hide').filter('[data-index=' + index + ']').removeClass('hide');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【品牌】搜索
|
|
|
$('#brand-search-input').keyup(function() {
|
|
|
var val = $(this).val().toLowerCase();
|
|
|
|
|
|
if (val === '') {
|
|
|
$brandAttrs.removeClass('hide');
|
|
|
} else {
|
|
|
$brandAttrs.addClass('hide').filter('[data-key*="' + val + '"]').removeClass('hide');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【品牌】多选确定
|
|
|
$('#brand-multi-ok').click(function() {
|
|
|
var val = '';
|
|
|
|
|
|
if ($(this).hasClass('dis')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$brandPanel.find('.checked').each(function() {
|
|
|
var id = $(this).data('id');
|
|
|
|
|
|
val += (val === '') ? id : (',' + id);
|
|
|
});
|
|
|
|
|
|
uriLoc('brand', val);
|
|
|
});
|
|
|
|
|
|
//【品牌/高级选项】多选取消
|
|
|
$('.multi-select-cancel').click(function() {
|
|
|
var $panel = $(this).closest('.multi');
|
|
|
|
|
|
if ($panel.hasClass('brand-panel')) {
|
|
|
|
|
|
$brandMulti.removeClass('hide'); //显示多选按钮
|
|
|
$brandMore.trigger('click');
|
|
|
}
|
|
|
|
|
|
$panel.removeClass('multi');
|
|
|
clearChecked($panel.find('.checkbox.checked')); //清除选中状态
|
|
|
});
|
|
|
|
|
|
//【品牌/高级选项】checkbox
|
|
|
$('.check-container').on('click', '.attr', function() {
|
|
|
var $this = $(this),
|
|
|
$check = $this.find('.checkbox'),
|
|
|
$btnOk = $this.closest('.brand-panel, .senior-sub').find('.multi-select-ok');
|
|
|
|
|
|
$check.toggleClass('checked');
|
|
|
|
|
|
if ($check.hasClass('checked')) {
|
|
|
$check.html(checkUnicode.checked);
|
|
|
} else {
|
|
|
$check.html(checkUnicode.unchecked);
|
|
|
}
|
|
|
|
|
|
//更新按钮状态
|
|
|
if ($check.hasClass('checked') ||
|
|
|
$this.siblings('.attr').find('.checked').length > 0) {
|
|
|
$btnOk.removeClass('dis');
|
|
|
} else {
|
|
|
$btnOk.addClass('dis');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【品牌/高级选项】当多选时阻止链接默认跳转
|
|
|
$('.brand, .senior').on('click', '.attr > a', function(e) {
|
|
|
if ($(this).closest('.multi').length > 0) {
|
|
|
e.preventDefault();
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【价格】用户定义价格处理
|
|
|
if ($udPrice.length > 0) {
|
|
|
$limit = $udPrice.find('.limit');
|
|
|
$min = $limit.filter('.min');
|
|
|
$max = $limit.filter('.max');
|
|
|
$btn = $udPrice.find('.price-sure');
|
|
|
|
|
|
//【价格】输入
|
|
|
$limit.keyup(function() {
|
|
|
var min = $.trim($min.val()),
|
|
|
max = $.trim($max.val()),
|
|
|
isMinInt = interReg.test(min),
|
|
|
isMaxInt = interReg.test(max);
|
|
|
|
|
|
if (isMaxInt && (min === '' || isMinInt) ||
|
|
|
isMinInt && (max === '' || isMaxInt)
|
|
|
) {
|
|
|
$btn.removeClass('hide');
|
|
|
} else {
|
|
|
$btn.addClass('hide');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【价格】多项查询
|
|
|
$btn.click(function() {
|
|
|
var min = $.trim($min.val()),
|
|
|
max = $.trim($max.val()),
|
|
|
tmp;
|
|
|
|
|
|
//对于min大于max的情况,交换位置
|
|
|
if (min !== '' && max !== '' && +min > +max) {
|
|
|
tmp = max;
|
|
|
max = min;
|
|
|
min = tmp;
|
|
|
}
|
|
|
|
|
|
uriLoc('price', min + ',' + max);
|
|
|
});
|
|
|
}
|
|
|
|
|
|
//【高级选项】鼠标移入显示子项
|
|
|
$seniorAttrWrap.on('mouseenter', '.attr', function() {
|
|
|
var $this = $(this);
|
|
|
var index = $this.index();
|
|
|
|
|
|
if ($this.hasClass('no-sub')) {
|
|
|
return;
|
|
|
}
|
|
|
$this.addClass('hover').siblings().removeClass('hover');
|
|
|
|
|
|
$seniorSubWrap.children('.senior-sub:eq(' + index + ')').removeClass('hide').siblings().addClass('hide');
|
|
|
}).on('mouseleave', '.attr', function() {
|
|
|
var $this = $(this),
|
|
|
index = $this.index();
|
|
|
|
|
|
if ($this.hasClass('no-sub')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
hoveredIndex = index;
|
|
|
|
|
|
seniorHoverTime = setTimeout(function() {
|
|
|
hideSeniorPanel();
|
|
|
}, 100);
|
|
|
});
|
|
|
|
|
|
//【高级选项】多选
|
|
|
$('.senior-sub').on('click', '.multi-select', function() {
|
|
|
$(this).closest('.senior-sub').addClass('multi');
|
|
|
}).on('click', '.multi-select-ok', function() {
|
|
|
var $btn = $(this),
|
|
|
$sub = $btn.closest('.senior-sub'),
|
|
|
val = '';
|
|
|
|
|
|
if ($btn.hasClass('dis')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$sub.find('.checked').each(function() {
|
|
|
var id = $(this).data('id');
|
|
|
|
|
|
val += (val === '') ? id : (',' + id);
|
|
|
});
|
|
|
|
|
|
uriLoc($sub.data('attr'), val);
|
|
|
}).on('mouseenter', function() {
|
|
|
clearTimeout(seniorHoverTime);
|
|
|
}).on('mouseleave', function() {
|
|
|
hideSeniorPanel();
|
|
|
});
|
|
|
/**
|
|
|
* 商品筛选逻辑
|
|
|
* @author: xuqi<qi.xu@yoho.cn>
|
|
|
* @date: 2015/12/4
|
|
|
*/
|
|
|
|
|
|
var $ = require("jquery"),
|
|
|
Handlebars = require("handlebars");
|
|
|
|
|
|
var checkUnicode = {
|
|
|
unchecked: '',
|
|
|
checked: ''
|
|
|
},
|
|
|
moreUnicode = {
|
|
|
up: '',
|
|
|
down: ''
|
|
|
};
|
|
|
|
|
|
//品牌相关变量
|
|
|
var $brandDefault = $('.brand .default'),
|
|
|
$brandPanel = $('.brand .brand-panel'),
|
|
|
$brandAttrs = $brandPanel.find('.attr'),
|
|
|
$brandMore = $('#brand-more'),
|
|
|
$brandMulti = $('#brand-multi');
|
|
|
|
|
|
var $brandMoreTxt, $brandMoreIcon;
|
|
|
|
|
|
//价格相关变量
|
|
|
var $udPrice = $('.ud-price-range'),
|
|
|
interReg = /^\d+$/,
|
|
|
$limit, $min, $max, $btn;
|
|
|
|
|
|
//分类相关变量
|
|
|
var $sortSub = $('.sort-sub-wrap');
|
|
|
|
|
|
//高级选项相关变量
|
|
|
var $seniorSubWrap = $('.senior-sub-wrap'),
|
|
|
$seniorAttrWrap = $('.senior-attr-wrap');
|
|
|
|
|
|
var seniorHoverTime, hoveredIndex;
|
|
|
|
|
|
// 尺寸 handlebars 模板
|
|
|
var sizeTmpl = '{{# size}}<a class="attr {{#if checked}}checked{{/if}}" href="{{href}}">{{name}}</a>{{/ size}}',
|
|
|
sizeCache = {}, // 缓存一下尺寸信息
|
|
|
$sizeWrap = $('.filter-box .size');
|
|
|
|
|
|
sizeTmpl = Handlebars.compile(sizeTmpl);
|
|
|
|
|
|
//清除checkbox选中状态
|
|
|
function clearChecked($checkbox) {
|
|
|
$checkbox.removeClass('checked').html(checkUnicode.unchecked);
|
|
|
}
|
|
|
|
|
|
//显示更多品牌面板
|
|
|
function brandShowMore() {
|
|
|
$brandDefault.addClass('hide');
|
|
|
$brandPanel.removeClass('hide');
|
|
|
}
|
|
|
|
|
|
//隐藏更多品牌面板
|
|
|
function brandHideMore() {
|
|
|
$brandPanel.addClass('hide');
|
|
|
$brandDefault.removeClass('hide');
|
|
|
}
|
|
|
|
|
|
//url构造&跳转
|
|
|
function uriLoc(attr, val) {
|
|
|
var href = decodeURIComponent(window.location.search),
|
|
|
query = attr + '=' + val,
|
|
|
newHref;
|
|
|
|
|
|
if (href === '') {
|
|
|
newHref = '?' + query;
|
|
|
} else {
|
|
|
newHref = href + '&' + query;
|
|
|
}
|
|
|
|
|
|
window.location.href = newHref;
|
|
|
}
|
|
|
|
|
|
//隐藏高级选项面板
|
|
|
function hideSeniorPanel(index) {
|
|
|
$seniorSubWrap.children('.senior-sub:eq(' + hoveredIndex + ')').addClass('hide');
|
|
|
$seniorAttrWrap.children('.attr:eq(' + hoveredIndex + ')').removeClass('hover');
|
|
|
hoveredIndex = -1;
|
|
|
}
|
|
|
|
|
|
//屏蔽筛选项双击文字选中
|
|
|
$('.filter-box').on('selectstart', '.attr, .brands-index span', function() {
|
|
|
return false;
|
|
|
});
|
|
|
|
|
|
//【分类】
|
|
|
$('.sort-pre').on('click', 'li', function() {
|
|
|
var $this = $(this),
|
|
|
index = $this.index(),
|
|
|
id = $this.data('id');
|
|
|
|
|
|
if ($this.hasClass('active')) {
|
|
|
|
|
|
// 选中时,再次点击取消选中
|
|
|
$this.removeClass('active');
|
|
|
$sortSub.children(':eq(' + index + ')').addClass('hide');
|
|
|
$sizeWrap.addClass('hide');
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$this.siblings('.active').removeClass('active');
|
|
|
$this.addClass('active');
|
|
|
|
|
|
$sortSub.children(':not(.hide)').addClass('hide');
|
|
|
$sortSub.children(':eq(' + index + ')').removeClass('hide');
|
|
|
|
|
|
if (!$sizeWrap.data('load')) {
|
|
|
if (sizeCache[id]) {
|
|
|
$sizeWrap.find('.attr-content').html(sizeCache[id]);
|
|
|
$sizeWrap.removeClass('hide');
|
|
|
} else {
|
|
|
$.ajax({
|
|
|
url: '/product/search/sortSize',
|
|
|
data: {
|
|
|
msort: id
|
|
|
}
|
|
|
}).then(function(res) {
|
|
|
if ($.type(res) === 'array' && res.length) {
|
|
|
sizeCache[id] = sizeTmpl({
|
|
|
size: res
|
|
|
});
|
|
|
$sizeWrap.find('.attr-content').html(sizeCache[id]);
|
|
|
$sizeWrap.removeClass('hide');
|
|
|
} else {
|
|
|
$sizeWrap.addClass('hide');
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【品牌】
|
|
|
if ($brandMore.length > 0) {
|
|
|
$brandMoreTxt = $brandMore.children('em');
|
|
|
$brandMoreIcon = $brandMore.children('.iconfont');
|
|
|
}
|
|
|
|
|
|
//【品牌】多选
|
|
|
$brandMulti.click(function() {
|
|
|
if ($brandPanel.css('display') === 'none') {
|
|
|
|
|
|
//显示品牌面板
|
|
|
$brandMore.trigger('click');
|
|
|
}
|
|
|
|
|
|
brandShowMore();
|
|
|
$brandPanel.removeClass('hide').addClass('multi'); //显示出checkbox
|
|
|
$(this).addClass('hide');
|
|
|
});
|
|
|
|
|
|
//【品牌】更多
|
|
|
$brandMore.click(function() {
|
|
|
var $this = $(this);
|
|
|
|
|
|
if ($this.hasClass('more')) {
|
|
|
brandHideMore();
|
|
|
|
|
|
$brandMoreTxt.text('更多');
|
|
|
$brandMoreIcon.html(moreUnicode.down);
|
|
|
} else {
|
|
|
brandShowMore();
|
|
|
|
|
|
$brandMoreTxt.text('收起');
|
|
|
$brandMoreIcon.html(moreUnicode.up);
|
|
|
}
|
|
|
|
|
|
$(this).toggleClass('more');
|
|
|
});
|
|
|
|
|
|
//【品牌】索引
|
|
|
$('.brands-index').on('mouseenter', 'span', function() {
|
|
|
var $this = $(this),
|
|
|
index = $this.data('index');
|
|
|
|
|
|
if ($this.hasClass('hover')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$this.siblings('span.hover').removeClass('hover');
|
|
|
$this.addClass('hover');
|
|
|
|
|
|
if ($this.index() === 0) {
|
|
|
|
|
|
//全部
|
|
|
$brandAttrs.removeClass('hide');
|
|
|
} else {
|
|
|
$brandAttrs.addClass('hide').filter('[data-index=' + index + ']').removeClass('hide');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【品牌】搜索
|
|
|
$('#brand-search-input').keyup(function() {
|
|
|
var val = $(this).val().toLowerCase();
|
|
|
|
|
|
if (val === '') {
|
|
|
$brandAttrs.removeClass('hide');
|
|
|
} else {
|
|
|
$brandAttrs.addClass('hide').filter('[data-key*="' + val + '"]').removeClass('hide');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【品牌】多选确定
|
|
|
$('#brand-multi-ok').click(function() {
|
|
|
var val = '';
|
|
|
|
|
|
if ($(this).hasClass('dis')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$brandPanel.find('.checked').each(function() {
|
|
|
var id = $(this).data('id');
|
|
|
|
|
|
val += (val === '') ? id : (',' + id);
|
|
|
});
|
|
|
|
|
|
uriLoc('brand', val);
|
|
|
});
|
|
|
|
|
|
//【品牌/高级选项】多选取消
|
|
|
$('.multi-select-cancel').click(function() {
|
|
|
var $panel = $(this).closest('.multi');
|
|
|
|
|
|
if ($panel.hasClass('brand-panel')) {
|
|
|
|
|
|
$brandMulti.removeClass('hide'); //显示多选按钮
|
|
|
$brandMore.trigger('click');
|
|
|
}
|
|
|
|
|
|
$panel.addClass('hide').removeClass('multi');
|
|
|
brandHideMore();
|
|
|
clearChecked($panel.find('.checkbox.checked')); //清除选中状态
|
|
|
});
|
|
|
|
|
|
//【品牌/高级选项】checkbox
|
|
|
$('.check-container').on('click', '.attr', function() {
|
|
|
var $this = $(this),
|
|
|
$check = $this.find('.checkbox'),
|
|
|
$btnOk = $this.closest('.brand-panel, .senior-sub').find('.multi-select-ok');
|
|
|
|
|
|
$check.toggleClass('checked');
|
|
|
|
|
|
if ($check.hasClass('checked')) {
|
|
|
$check.html(checkUnicode.checked);
|
|
|
} else {
|
|
|
$check.html(checkUnicode.unchecked);
|
|
|
}
|
|
|
|
|
|
//更新按钮状态
|
|
|
if ($check.hasClass('checked') ||
|
|
|
$this.siblings('.attr').find('.checked').length > 0) {
|
|
|
$btnOk.removeClass('dis');
|
|
|
} else {
|
|
|
$btnOk.addClass('dis');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【品牌/高级选项】当多选时阻止链接默认跳转
|
|
|
$('.brand, .senior').on('click', '.attr > a', function(e) {
|
|
|
if ($(this).closest('.multi').length > 0) {
|
|
|
e.preventDefault();
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【价格】用户定义价格处理
|
|
|
if ($udPrice.length > 0) {
|
|
|
$limit = $udPrice.find('.limit');
|
|
|
$min = $limit.filter('.min');
|
|
|
$max = $limit.filter('.max');
|
|
|
$btn = $udPrice.find('.price-sure');
|
|
|
|
|
|
//【价格】输入
|
|
|
$limit.keyup(function() {
|
|
|
var min = $.trim($min.val()),
|
|
|
max = $.trim($max.val()),
|
|
|
isMinInt = interReg.test(min),
|
|
|
isMaxInt = interReg.test(max);
|
|
|
|
|
|
if (isMaxInt && (min === '' || isMinInt) ||
|
|
|
isMinInt && (max === '' || isMaxInt)
|
|
|
) {
|
|
|
$btn.removeClass('hide');
|
|
|
} else {
|
|
|
$btn.addClass('hide');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//【价格】多项查询
|
|
|
$btn.click(function() {
|
|
|
var min = $.trim($min.val()),
|
|
|
max = $.trim($max.val()),
|
|
|
tmp;
|
|
|
|
|
|
//对于min大于max的情况,交换位置
|
|
|
if (min !== '' && max !== '' && +min > +max) {
|
|
|
tmp = max;
|
|
|
max = min;
|
|
|
min = tmp;
|
|
|
}
|
|
|
|
|
|
uriLoc('price', min + ',' + max);
|
|
|
});
|
|
|
}
|
|
|
|
|
|
//【高级选项】鼠标移入显示子项
|
|
|
$seniorAttrWrap.on('mouseenter', '.attr', function() {
|
|
|
var $this = $(this);
|
|
|
var index = $this.index();
|
|
|
|
|
|
if ($this.hasClass('no-sub')) {
|
|
|
return;
|
|
|
}
|
|
|
$this.addClass('hover').siblings().removeClass('hover');
|
|
|
|
|
|
$seniorSubWrap.children('.senior-sub:eq(' + index + ')').removeClass('hide').siblings().addClass('hide');
|
|
|
}).on('mouseleave', '.attr', function() {
|
|
|
var $this = $(this),
|
|
|
index = $this.index();
|
|
|
|
|
|
if ($this.hasClass('no-sub')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
hoveredIndex = index;
|
|
|
|
|
|
seniorHoverTime = setTimeout(function() {
|
|
|
hideSeniorPanel();
|
|
|
}, 100);
|
|
|
});
|
|
|
|
|
|
//【高级选项】多选
|
|
|
$('.senior-sub').on('click', '.multi-select', function() {
|
|
|
$(this).closest('.senior-sub').addClass('multi');
|
|
|
}).on('click', '.multi-select-ok', function() {
|
|
|
var $btn = $(this),
|
|
|
$sub = $btn.closest('.senior-sub'),
|
|
|
val = '';
|
|
|
|
|
|
if ($btn.hasClass('dis')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$sub.find('.checked').each(function() {
|
|
|
var id = $(this).data('id');
|
|
|
|
|
|
val += (val === '') ? id : (',' + id);
|
|
|
});
|
|
|
|
|
|
uriLoc($sub.data('attr'), val);
|
|
|
}).on('mouseenter', function() {
|
|
|
clearTimeout(seniorHoverTime);
|
|
|
}).on('mouseleave', function() {
|
|
|
hideSeniorPanel();
|
|
|
});
|
|
|
|
|
|
});
|
|
|
define("js/product/sort-pager", ["jquery"], function(require, exports, module){
|
...
|
...
|
@@ -3501,49 +3504,49 @@ var $ = require("jquery"); |
|
|
}($));
|
|
|
});
|
|
|
define("js/common/accordion", ["jquery"], function(require, exports, module){
|
|
|
var Slide = require("js/common/yohoui/YH.slide");
|
|
|
var $ = require("jquery");
|
|
|
|
|
|
var $contain = $('.slide-accordion');
|
|
|
var $item = $contain.find('li');
|
|
|
|
|
|
var $width = $item.width();
|
|
|
var $spn = parseInt($('.home-page').width()) === 1150 ? (120 + 5) : (102 + 5);
|
|
|
var slide;
|
|
|
|
|
|
function switchfun(to) {
|
|
|
$item.each(function(index) {
|
|
|
$(this).css('zIndex', index);
|
|
|
if (index <= to) {
|
|
|
$(this).stop().animate({
|
|
|
left: index * $spn
|
|
|
}, 400);
|
|
|
} else {
|
|
|
$(this).stop().animate({
|
|
|
left: (to) * $spn + $width + $spn * (index - to - 1)
|
|
|
}, 400);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
switchfun(0);
|
|
|
|
|
|
slide = new Slide({
|
|
|
length: 5,
|
|
|
loop: false,
|
|
|
auto: false,
|
|
|
timeout: 2,
|
|
|
index: 3
|
|
|
});
|
|
|
|
|
|
slide.on('change', function(data) {
|
|
|
switchfun(data.to);
|
|
|
});
|
|
|
|
|
|
$item.mouseover(function() {
|
|
|
slide.go($(this).index());
|
|
|
});
|
|
|
|
|
|
var Slide = require("js/common/yohoui/YH.slide");
|
|
|
var $ = require("jquery");
|
|
|
|
|
|
var $contain = $('.slide-accordion');
|
|
|
var $item = $contain.find('li');
|
|
|
|
|
|
var $width = $item.width();
|
|
|
var $spn = parseInt($('.home-page').width()) === 1150 ? (120 + 5) : (102 + 5);
|
|
|
var slide;
|
|
|
|
|
|
function switchfun(to) {
|
|
|
$item.each(function(index) {
|
|
|
$(this).css('zIndex', index);
|
|
|
if (index <= to) {
|
|
|
$(this).stop().animate({
|
|
|
left: index * $spn
|
|
|
}, 400);
|
|
|
} else {
|
|
|
$(this).stop().animate({
|
|
|
left: (to) * $spn + $width + $spn * (index - to - 1)
|
|
|
}, 400);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
switchfun(0);
|
|
|
|
|
|
slide = new Slide({
|
|
|
length: 5,
|
|
|
loop: false,
|
|
|
auto: false,
|
|
|
timeout: 2,
|
|
|
index: 1
|
|
|
});
|
|
|
|
|
|
slide.on('change', function(data) {
|
|
|
switchfun(data.to);
|
|
|
});
|
|
|
|
|
|
$item.mouseover(function() {
|
|
|
slide.go($(this).index());
|
|
|
});
|
|
|
|
|
|
slide.init();
|
|
|
});
|
|
|
define("js/common/yohoui/YH.slide", [], function(require, exports, module){
|
...
|
...
|
@@ -4764,7 +4767,7 @@ function validateRule(page, $element, callback) { |
|
|
callback();
|
|
|
|
|
|
} else if (val.length <= 3) {
|
|
|
validateResult[2].message = '短信验证码为4位';
|
|
|
validateResult[2].message = '短信验证码错误';
|
|
|
validateResult[2].status = false;
|
|
|
callback();
|
|
|
|
...
|
...
|
@@ -5778,7 +5781,7 @@ $('#login-btn').on('click', function() { |
|
|
}
|
|
|
} else {
|
|
|
$passwordTip.removeClass('hide').children('em').html(data.message);
|
|
|
$password.addClass('error');
|
|
|
$password.addClass('error').val('');
|
|
|
}
|
|
|
},
|
|
|
complete: function() {
|
...
|
...
|
|