From bcb19e8c93c3cabf0d8eb3ee34ed819b3c5a10ef Mon Sep 17 00:00:00 2001 From: whycq <913841844@qq.com> Date: 星期一, 25 十一月 2024 13:14:11 +0800 Subject: [PATCH] #优化地图 --- src/main/webapp/static/js/locDetlStatis/locDetlStatis.js | 68 ++++++++++++++++++++++++++++++---- 1 files changed, 60 insertions(+), 8 deletions(-) diff --git a/src/main/webapp/static/js/locDetlStatis/locDetlStatis.js b/src/main/webapp/static/js/locDetlStatis/locDetlStatis.js index aac1566..9e80d36 100644 --- a/src/main/webapp/static/js/locDetlStatis/locDetlStatis.js +++ b/src/main/webapp/static/js/locDetlStatis/locDetlStatis.js @@ -3,8 +3,13 @@ var cols = [ {field: 'anfme', align: 'center',title: '搴撳瓨鏁伴噺', style: 'font-weight: bold'} ]; - arrRemove(detlCols, "field", "anfme") - arrRemove(detlCols, "field", "zpallet") + arrRemove(detlCols, "field", "anfme"); + arrRemove(detlCols,"field","suppCode"); + arrRemove(detlCols, "field", "zpallet"); + arrRemove(detlCols, "field", "orderNo"); + arrRemove(detlCols, "field", "threeCode"); + arrRemove(detlCols, "field", "deadTime"); + arrRemove(detlCols, "field", "batch"); cols.push.apply(cols, detlCols); // cols.push({field: 'anfme', align: 'center',title: '鏁伴噺', style: 'font-weight: bold'} // ) @@ -24,8 +29,8 @@ headers: {token: localStorage.getItem('token')}, url: baseUrl+'/locDetl/statis/auth', page: true, - limit: 16, - limits: [16, 30, 50, 100, 200, 500], + limit: 20, + limits: [20, 30, 50, 100, 200, 500], even: true, toolbar: '#toolbar', cellMinWidth: 50, @@ -59,6 +64,19 @@ res.data[_index][data.value] = 'N'; } }); + /** + * 鏄剧ず搴撳瓨鎬绘暟閲� + */ + $.ajax({ + url: baseUrl+"/locDetl/count", + headers: {'token': localStorage.getItem('token')}, + contentType:'application/json;charset=UTF-8', + method: 'POST', + success: function (res) { + $("#countNum").text(res.data + '涓�'); + } + }); + } }); @@ -90,10 +108,44 @@ var checkStatus = table.checkStatus(obj.config.id); switch(obj.event) { case 'exportAll': - layer.closeAll(); - layer.load(1, {shade: [0.1,'#fff']}); - location.href = baseUrl + "/locDetl/statis/export"; - layer.closeAll('loading'); + layer.confirm('纭畾瀵煎嚭Excel鍚�', {shadeClose: true}, function(){ + var titles=[]; + var fields=[]; + obj.config.cols[0].map(function (col) { + if (col.type === 'normal' && col.hide === false && col.toolbar == null) { + titles.push(col.title); + fields.push(col.field); + } + }); + var exportData = {}; + $.each($('#search-box [name]').serializeArray(), function() { + exportData[this.name] = this.value; + }); + var param = { + 'locDetl': exportData, + 'fields': fields + }; + var loadIndex = layer.msg('姝e湪瀵煎嚭...', {icon: 16, shade: 0.01, time: false}); + $.ajax({ + url: baseUrl+"/locDetl/statis/export", + headers: {'token': localStorage.getItem('token')}, + data: JSON.stringify(param), + dataType:'json', + contentType:'application/json;charset=UTF-8', + method: 'POST', + success: function (res) { + layer.close(loadIndex); + layer.closeAll(); + if (res.code === 200) { + table.exportFile(titles,res.data,'xls'); + } else if (res.code === 403) { + top.location.href = baseUrl+"/"; + } else { + layer.msg(res.msg) + } + } + }); + }); break; case 'exportData': layer.confirm('纭畾瀵煎嚭Excel鍚�', {shadeClose: true}, function(){ -- Gitblit v1.9.1