Showing
3 changed files
with
6 additions
and
3 deletions
@@ -17,7 +17,7 @@ | @@ -17,7 +17,7 @@ | ||
17 | <td>说明:</td> | 17 | <td>说明:</td> |
18 | <td colspan="2"> | 18 | <td colspan="2"> |
19 | 1、上传文件必须是 .xlsx 文件<br> | 19 | 1、上传文件必须是 .xlsx 文件<br> |
20 | - 2、第一行标题栏:SKN、起购件数、折扣、展示名称(非必填)<br> | 20 | + 2、第一行标题栏:SKN、起购件数、折扣、促销短语<br> |
21 | <span style="color: red;">3、折扣只支持 0.01-1 之间的数字,到小数点后 2 位,例如 0.85;</span><br> | 21 | <span style="color: red;">3、折扣只支持 0.01-1 之间的数字,到小数点后 2 位,例如 0.85;</span><br> |
22 | 4、<a href="/ajax/link/productBatchImport">下载样例</a> | 22 | 4、<a href="/ajax/link/productBatchImport">下载样例</a> |
23 | </td> | 23 | </td> |
@@ -41,6 +41,9 @@ var tableGird = new common.grid({ | @@ -41,6 +41,9 @@ var tableGird = new common.grid({ | ||
41 | { display: "起购件数", render: function(items) { | 41 | { display: "起购件数", render: function(items) { |
42 | return items.minCount; | 42 | return items.minCount; |
43 | }}, | 43 | }}, |
44 | + { display: "促销短语", render: function(items) { | ||
45 | + return items.promotionPhrase; | ||
46 | + }}, | ||
44 | { display: "状态", render: function(items) { | 47 | { display: "状态", render: function(items) { |
45 | return items.status == 1 ? "开启" : "关闭"; | 48 | return items.status == 1 ? "开启" : "关闭"; |
46 | }}, | 49 | }}, |
@@ -120,7 +123,7 @@ function t(obj) { | @@ -120,7 +123,7 @@ function t(obj) { | ||
120 | 123 | ||
121 | // 导出 | 124 | // 导出 |
122 | $(document).on("click", "#exportsearch", function () { | 125 | $(document).on("click", "#exportsearch", function () { |
123 | - var temp = $.extend(true, {}, tableGird.parms); | 126 | + var temp = $.extend(true, tableGird.__getparams(), {"size": 10000} ); |
124 | window.open("/ajax/down?queryConf=" + JSON.stringify(temp) + "&type=productBatchServiceExport"); | 127 | window.open("/ajax/down?queryConf=" + JSON.stringify(temp) + "&type=productBatchServiceExport"); |
125 | }); | 128 | }); |
126 | 129 |
@@ -123,7 +123,7 @@ $(document).on('click', '.delete', function () { | @@ -123,7 +123,7 @@ $(document).on('click', '.delete', function () { | ||
123 | 123 | ||
124 | // 导出 | 124 | // 导出 |
125 | $(document).on("click", "#exportsearch", function () { | 125 | $(document).on("click", "#exportsearch", function () { |
126 | - var temp = $.extend(true, {}, tableGird.parms); | 126 | + var temp = $.extend(true, tableGird.__getparams(), {"size": 10000} ); |
127 | window.open("/ajax/down?queryConf=" + JSON.stringify(temp) + "&type=productBundleServiceExport"); | 127 | window.open("/ajax/down?queryConf=" + JSON.stringify(temp) + "&type=productBundleServiceExport"); |
128 | }); | 128 | }); |
129 | 129 |
-
Please register or login to post a comment