From cf43493d7aa9c1a83cb1551c102f501f1dfde9b0 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期六, 06 六月 2020 13:23:39 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/wrkDetl/wrkDetl.js | 24 ++++++++++++------------ 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/main/webapp/static/js/wrkDetl/wrkDetl.js b/src/main/webapp/static/js/wrkDetl/wrkDetl.js index 8dca43d..2a6ba7c 100644 --- a/src/main/webapp/static/js/wrkDetl/wrkDetl.js +++ b/src/main/webapp/static/js/wrkDetl/wrkDetl.js @@ -10,7 +10,7 @@ tableIns = table.render({ elem: '#wrkDetl', headers: {token: localStorage.getItem('token')}, - url: '/wrkDetl/list/auth', + url: baseUrl+'/wrkDetl/list/auth', page: true, limit: 16, even: true, @@ -58,7 +58,7 @@ }, done: function(res, curr, count) { if (res.code === 403) { - top.location.href = "/"; + top.location.href = baseUrl; } pageCurr=curr; limit(); @@ -88,7 +88,7 @@ }, done: function (res, curr, count) { if (res.code === 403) { - top.location.href = "/"; + top.location.href = baseUrl; } pageCurr=curr; limit(); @@ -130,7 +130,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 +140,7 @@ layer.closeAll(); tableReload(false); } else if (res.code === 403){ - top.location.href = "/"; + top.location.href = baseUrl; } else { layer.msg(res.msg) } @@ -168,7 +168,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 +179,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 +247,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 +283,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 +351,7 @@ }; $.ajax({ - url: "/wrkDetl/"+name+"/auth", + url: baseUrl+"/wrkDetl/"+name+"/auth", headers: {'token': localStorage.getItem('token')}, data: top.reObject(data), method: 'POST', @@ -363,7 +363,7 @@ $(this).val(""); }); } else if (res.code === 403){ - top.location.href = "/"; + top.location.href = baseUrl; }else { layer.msg(res.msg) } @@ -429,7 +429,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