From a1547b55b98257f84fba107a7abd7c39c75b2eea Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期六, 06 六月 2020 10:53:39 +0800
Subject: [PATCH] #

---
 src/main/webapp/static/js/staDesc/staDesc.js |   32 ++++++++++++++++----------------
 1 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/src/main/webapp/static/js/staDesc/staDesc.js b/src/main/webapp/static/js/staDesc/staDesc.js
index d79b546..f656d46 100644
--- a/src/main/webapp/static/js/staDesc/staDesc.js
+++ b/src/main/webapp/static/js/staDesc/staDesc.js
@@ -10,7 +10,7 @@
     tableIns = table.render({
         elem: '#staDesc',
         headers: {token: localStorage.getItem('token')},
-        url: '/staDesc/list/auth',
+        url: baseUrl+'/staDesc/list/auth',
         page: true,
         limit: 16,
         even: true,
@@ -51,7 +51,7 @@
         },
         done: function(res, curr, count) {
             if (res.code === 403) {
-                top.location.href = "/";
+                top.location.href = baseUrl;
             }
             pageCurr=curr;
             limit();
@@ -81,7 +81,7 @@
             },
             done: function (res, curr, count) {
                 if (res.code === 403) {
-                    top.location.href = "/";
+                    top.location.href = baseUrl;
                 }
                 pageCurr=curr;
                 limit();
@@ -123,7 +123,7 @@
                 } else {
                     layer.confirm('纭畾鍒犻櫎'+(data.length===1?'姝�':data.length)+'鏉℃暟鎹悧', function(){
                         $.ajax({
-                            url: "/staDesc/delete/auth",
+                            url: baseUrl+"/staDesc/delete/auth",
                             headers: {'token': localStorage.getItem('token')},
                             data: {param: JSON.stringify(data)},
                             method: 'POST',
@@ -133,7 +133,7 @@
                                     layer.closeAll();
                                     tableReload(false);
                                 } else if (res.code === 403){
-                                    top.location.href = "/";
+                                    top.location.href = baseUrl;
                                 } else {
                                     layer.msg(res.msg)
                                 }
@@ -161,7 +161,7 @@
                         'fields': fields
                     };
                     $.ajax({
-                        url: "/staDesc/export/auth",
+                        url: baseUrl+"/staDesc/export/auth",
                         headers: {'token': localStorage.getItem('token')},
                         data: JSON.stringify(param),
                         dataType:'json',
@@ -172,7 +172,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)
                             }
@@ -240,7 +240,7 @@
                        content: '../basWrkIotype/basWrkIotype_detail.html',
                        success: function(layero, index){
                            $.ajax({
-                               url: "/basWrkIotype/"+ param +"/auth",
+                               url: baseUrl+"/basWrkIotype/"+ param +"/auth",
                                headers: {'token': localStorage.getItem('token')},
                                method: 'GET',
                                success: function (res) {
@@ -276,7 +276,7 @@
                        content: '../basDevp/basDevp_detail.html',
                        success: function(layero, index){
                            $.ajax({
-                               url: "/basDevp/"+ param +"/auth",
+                               url: baseUrl+"/basDevp/"+ param +"/auth",
                                headers: {'token': localStorage.getItem('token')},
                                method: 'GET',
                                success: function (res) {
@@ -312,7 +312,7 @@
                        content: '../basCrnp/basCrnp_detail.html',
                        success: function(layero, index){
                            $.ajax({
-                               url: "/basCrnp/"+ param +"/auth",
+                               url: baseUrl+"/basCrnp/"+ param +"/auth",
                                headers: {'token': localStorage.getItem('token')},
                                method: 'GET',
                                success: function (res) {
@@ -348,7 +348,7 @@
                        content: '../basDevp/basDevp_detail.html',
                        success: function(layero, index){
                            $.ajax({
-                               url: "/basDevp/"+ param +"/auth",
+                               url: baseUrl+"/basDevp/"+ param +"/auth",
                                headers: {'token': localStorage.getItem('token')},
                                method: 'GET',
                                success: function (res) {
@@ -384,7 +384,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) {
@@ -420,7 +420,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) {
@@ -481,7 +481,7 @@
 
         };
         $.ajax({
-            url: "/staDesc/"+name+"/auth",
+            url: baseUrl+"/staDesc/"+name+"/auth",
             headers: {'token': localStorage.getItem('token')},
             data: top.reObject(data),
             method: 'POST',
@@ -493,7 +493,7 @@
                         $(this).val("");
                     });
                 } else if (res.code === 403){
-                    top.location.href = "/";
+                    top.location.href = baseUrl;
                 }else {
                     layer.msg(res.msg)
                 }
@@ -555,7 +555,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