From 2571ba1e38fddbfdcd3e17450c4ee0cde89f3350 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期二, 16 六月 2020 10:38:16 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/api/api.js | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/webapp/static/js/api/api.js b/src/main/webapp/static/js/api/api.js index 9241fc0..61b39a4 100644 --- a/src/main/webapp/static/js/api/api.js +++ b/src/main/webapp/static/js/api/api.js @@ -10,7 +10,7 @@ tableIns = table.render({ elem: '#api', headers: {token: localStorage.getItem('token')}, - url: '/api/list/auth', + url: baseUrl+'/api/list/auth', page: true, limit: 16, toolbar: '#toolbar', @@ -45,7 +45,7 @@ }, done: function(res, curr, count) { if (res.code === 403) { - top.location.href = "/"; + top.location.href = baseUrl+"/"; } pageCurr=curr; limit(); @@ -67,7 +67,7 @@ }, done: function (res, curr, count) { if (res.code === 403) { - top.location.href = "/"; + top.location.href = baseUrl+"/"; } pageCurr=curr; limit(); @@ -112,7 +112,7 @@ } else { layer.confirm('纭畾鍒犻櫎'+(ids.length===1?'姝�':ids.length)+'鏉℃暟鎹悧', function(){ $.ajax({ - url: "/api/delete/auth", + url: baseUrl+"/api/delete/auth", headers: {'token': localStorage.getItem('token')}, data: {ids: ids}, method: 'POST', @@ -122,7 +122,7 @@ layer.closeAll(); tableReload(false); } else if (res.code === 403){ - top.location.href = "/"; + top.location.href = baseUrl+"/"; } else { layer.msg(res.msg) } @@ -150,7 +150,7 @@ 'fields': fields }; $.ajax({ - url: "/api/export/auth", + url: baseUrl+"/api/export/auth", headers: {'token': localStorage.getItem('token')}, data: JSON.stringify(param), dataType:'json', @@ -161,7 +161,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) } @@ -232,7 +232,7 @@ }; $.ajax({ - url: "/api/edit/auth", + url: baseUrl+"/api/edit/auth", headers: {'token': localStorage.getItem('token')}, data: top.reObject(data), method: 'POST', @@ -244,7 +244,7 @@ $(this).val(""); }); } else if (res.code === 403){ - top.location.href = "/"; + top.location.href = baseUrl+"/"; }else { layer.msg(res.msg) } @@ -295,7 +295,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