Authored by LiQZ

量贩问题调整

... ... @@ -17,7 +17,7 @@
<td>说明:</td>
<td colspan="2">
1、上传文件必须是 .xlsx 文件<br>
2、第一行标题栏:SKN、起购件数、折扣、展示名称(非必填)<br>
2、第一行标题栏:SKN、起购件数、折扣、促销短语<br>
<span style="color: red;">3、折扣只支持 0.01-1 之间的数字,到小数点后 2 位,例如 0.85;</span><br>
4、<a href="/ajax/link/productBatchImport">下载样例</a>
</td>
... ...
... ... @@ -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");
});
... ...
... ... @@ -123,7 +123,7 @@ $(document).on('click', '.delete', function () {
// 导出
$(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=productBundleServiceExport");
});
... ...