...
|
...
|
@@ -41,6 +41,9 @@ var tableGird = new common.grid({ |
|
|
{ display: "起购件数", render: function(items) {
|
|
|
return items.minCount;
|
|
|
}},
|
|
|
{ display: "促销短语", render: function(items) {
|
|
|
return items.promotionPhrase;
|
|
|
}},
|
|
|
{ display: "状态", render: function(items) {
|
|
|
return items.status == 1 ? "开启" : "关闭";
|
|
|
}},
|
...
|
...
|
@@ -120,7 +123,7 @@ function t(obj) { |
|
|
|
|
|
// 导出
|
|
|
$(document).on("click", "#exportsearch", function () {
|
|
|
var temp = $.extend(true, {}, tableGird.parms);
|
|
|
var temp = $.extend(true, tableGird.__getparams(), {"size": 10000} );
|
|
|
window.open("/ajax/down?queryConf=" + JSON.stringify(temp) + "&type=productBatchServiceExport");
|
|
|
});
|
|
|
|
...
|
...
|
|