Showing
2 changed files
with
2 additions
and
2 deletions
@@ -4,7 +4,7 @@ module.exports=function(app) { | @@ -4,7 +4,7 @@ module.exports=function(app) { | ||
4 | app.get("/login","common.Login"); | 4 | app.get("/login","common.Login"); |
5 | 5 | ||
6 | app.post("/login", "common_login", function (login, req, res){ | 6 | app.post("/login", "common_login", function (login, req, res){ |
7 | - if (login.code = 200) { | 7 | + if (login.code == 200) { |
8 | res.myRedirect('/'); | 8 | res.myRedirect('/'); |
9 | } else { | 9 | } else { |
10 | res.myRedirect('/login'); | 10 | res.myRedirect('/login'); |
@@ -43,7 +43,7 @@ var apiCofig = { | @@ -43,7 +43,7 @@ var apiCofig = { | ||
43 | //root:__dirname, | 43 | //root:__dirname, |
44 | EnvConst:{ | 44 | EnvConst:{ |
45 | domain:"http://192.168.102.210:8088/platform", | 45 | domain:"http://192.168.102.210:8088/platform", |
46 | - //bigdata:"http://172.16.6.189:8080/bigdata",//李建 | 46 | + // bigdata:"http://172.16.6.189:8080/bigdata",//李建 |
47 | bigdata:"http://192.168.102.210:8091/bigdata", | 47 | bigdata:"http://192.168.102.210:8091/bigdata", |
48 | //bigdata:"http://172.16.6.110:8080",//钟文 | 48 | //bigdata:"http://172.16.6.110:8080",//钟文 |
49 | system:Iaccount | 49 | system:Iaccount |
-
Please register or login to post a comment