Authored by 陶雨

SALE

... ... @@ -24,7 +24,7 @@ new common.dropDown({
});
new common.dropDown({
el: '#supplier',
ajax: 'supplier'
ajax: 'querySupplier'
});
new common.dropDown({
el: '#brand',
... ...
... ... @@ -208,10 +208,10 @@ $('#export-btn').on('click', function() {
var selectedArr = tableGird.selected,
len = selectedArr.length,
queryConf = '';
if (len <= 0) {
/*if (len <= 0) {
common.util.__tip('请选择要导出的商品', 'warning');
return;
}
}*/
$.each(selectedArr, function(i, value) {
queryConf += value['limitProductCode'];
if (i < len - 1) {
... ... @@ -222,7 +222,7 @@ $('#export-btn').on('click', function() {
common.util.__ajax({
url: '/limit/batch/export',
data: {
queryConf: queryConf,
queryConf: '2016022517335568',
type: 'limitProductReminder'
}
}, function(res) {
... ...
... ... @@ -51,8 +51,8 @@ exports.res = [
//网销信息 -> 网销信息页面渲染
route: '/goods/netsale/index',
method: 'GET',
view: 'pages/goods/net-sale',
src: '/goods/net-sale',
view: 'pages/goods/netsale',
src: '/goods/netsale',
data: {
pageTitle: '网销信息',
filter: {
... ...