From ddb173948bcb021a0b8099a69cc3da3071f33ca4 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期三, 17 六月 2020 15:09:13 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/wrkDetl/wrkDetl.js | 35 +++++++++++++++++------------------ 1 files changed, 17 insertions(+), 18 deletions(-) diff --git a/src/main/webapp/static/js/wrkDetl/wrkDetl.js b/src/main/webapp/static/js/wrkDetl/wrkDetl.js index 8dca43d..5b139c6 100644 --- a/src/main/webapp/static/js/wrkDetl/wrkDetl.js +++ b/src/main/webapp/static/js/wrkDetl/wrkDetl.js @@ -10,17 +10,16 @@ tableIns = table.render({ elem: '#wrkDetl', headers: {token: localStorage.getItem('token')}, - url: '/wrkDetl/list/auth', + url: baseUrl+'/wrkDetl/list/auth', page: true, limit: 16, + limits: [16, 30, 50, 100, 200, 500], even: true, toolbar: '#toolbar', cellMinWidth: 50, cols: [[ - {type: 'checkbox'} -// ,{field: 'id', title: 'ID', sort: true,align: 'center', fixed: 'left', width: 80} - ,{field: 'wrkNo', align: 'center',title: '宸ヤ綔鍙�'} - ,{field: 'ioTime$', align: 'center',title: '宸ヤ綔鏃堕棿'} + {field: 'wrkNo', align: 'center',title: '宸ヤ綔鍙�'} + ,{field: 'ioTime$', align: 'center',title: '宸ヤ綔鏃堕棿', width: 160} ,{field: 'matnr', align: 'center',title: '鐗╂枡'} ,{field: 'lgnum', align: 'center',title: '浠撳簱鍙�'} ,{field: 'tbnum', align: 'center',title: '杞偍璇锋眰缂栧彿'} @@ -32,7 +31,7 @@ ,{field: 'altme', align: 'center',title: '鍗曚綅'} ,{field: 'zpallet', align: 'center',title: '鎵樼洏鏉$爜'} ,{field: 'bname', align: 'center',title: '鐢ㄦ埛ID'} - ,{field: 'memo', align: 'center',title: '澶囨敞'} + // ,{field: 'memo', align: 'center',title: '澶囨敞'} // ,{field: 'modiUser$', align: 'center',title: '淇敼浜哄憳',event: 'modiUser', style: 'cursor:pointer'} // ,{field: 'modiTime$', align: 'center',title: '淇敼鏃堕棿'} // ,{field: 'appeUser$', align: 'center',title: '鍒涘缓鑰�',event: 'appeUser', style: 'cursor:pointer'} @@ -58,7 +57,7 @@ }, done: function(res, curr, count) { if (res.code === 403) { - top.location.href = "/"; + top.location.href = baseUrl+"/"; } pageCurr=curr; limit(); @@ -88,7 +87,7 @@ }, done: function (res, curr, count) { if (res.code === 403) { - top.location.href = "/"; + top.location.href = baseUrl+"/"; } pageCurr=curr; limit(); @@ -130,7 +129,7 @@ } else { layer.confirm('纭畾鍒犻櫎'+(data.length===1?'姝�':data.length)+'鏉℃暟鎹悧', function(){ $.ajax({ - url: "/wrkDetl/delete/auth", + url: baseUrl+"/wrkDetl/delete/auth", headers: {'token': localStorage.getItem('token')}, data: {param: JSON.stringify(data)}, method: 'POST', @@ -140,7 +139,7 @@ layer.closeAll(); tableReload(false); } else if (res.code === 403){ - top.location.href = "/"; + top.location.href = baseUrl+"/"; } else { layer.msg(res.msg) } @@ -150,7 +149,7 @@ } break; case 'exportData': - layer.confirm('纭畾瀵煎嚭Excel鍚�', function(){ + layer.confirm('纭畾瀵煎嚭Excel鍚�', {shadeClose: true}, function(){ var titles=[]; var fields=[]; obj.config.cols[0].map(function (col) { @@ -168,7 +167,7 @@ 'fields': fields }; $.ajax({ - url: "/wrkDetl/export/auth", + url: baseUrl+"/wrkDetl/export/auth", headers: {'token': localStorage.getItem('token')}, data: JSON.stringify(param), dataType:'json', @@ -179,7 +178,7 @@ if (res.code === 200) { table.exportFile(titles,res.data,'xls'); } else if (res.code === 403) { - top.location.href = "/"; + top.location.href = baseUrl+"/"; } else { layer.msg(res.msg) } @@ -247,7 +246,7 @@ content: '../user/user_detail.html', success: function(layero, index){ $.ajax({ - url: "/user/"+ param +"/auth", + url: baseUrl+"/user/"+ param +"/auth", headers: {'token': localStorage.getItem('token')}, method: 'GET', success: function (res) { @@ -283,7 +282,7 @@ content: '../user/user_detail.html', success: function(layero, index){ $.ajax({ - url: "/user/"+ param +"/auth", + url: baseUrl+"/user/"+ param +"/auth", headers: {'token': localStorage.getItem('token')}, method: 'GET', success: function (res) { @@ -351,7 +350,7 @@ }; $.ajax({ - url: "/wrkDetl/"+name+"/auth", + url: baseUrl+"/wrkDetl/"+name+"/auth", headers: {'token': localStorage.getItem('token')}, data: top.reObject(data), method: 'POST', @@ -363,7 +362,7 @@ $(this).val(""); }); } else if (res.code === 403){ - top.location.href = "/"; + top.location.href = baseUrl+"/"; }else { layer.msg(res.msg) } @@ -429,7 +428,7 @@ }, done: function (res, curr, count) { if (res.code === 403) { - top.location.href = "/"; + top.location.href = baseUrl+"/"; } pageCurr=curr; if (res.data.length === 0 && count !== 0) { -- Gitblit v1.9.1