Authored by weiqingting

提交

... ... @@ -488,16 +488,16 @@ $("#basedaochu").click(function(){
len = selectedArr.length,
data = g.options.parms();
var filter=$(".wqt_all").prop("checked");
$.each(data, function(key, value) {
if (value && value != '' && key != 'size' && key != 'tab') {
count++;
}
});
if (count == 0 && len <= 0) {
common.util.__tip('请选择导出商品的条件', 'warning');
return;
}
if ((count > 0&&filter) || len > 0) {
var productSknList=[];
if (len > 0) {
data.productSknList = [];
... ... @@ -513,4 +513,8 @@ $("#basedaochu").click(function(){
}
}
window.open("/ajax/down?queryConf=" + JSON.stringify(result) + "&type=baseProduce");
}else{
common.util.__tip('请选择导出商品的条件', 'warning');
return;
}
});
\ No newline at end of file
... ...