Browse Source

增加跳转登录控制

yezehua 7 years ago
parent
commit
ae7ba8ef74
1 changed files with 43 additions and 10 deletions
  1. 43 10
      js/api-service.js

+ 43 - 10
js/api-service.js

@ -1,9 +1,32 @@
(function($){
	$.support.cors = true
	var publish_version = false;
	var agentName = "wlyyAgent";
	var server, userAgent, loginUrl;
	
	$.support.cors = true;
	if(publish_version) { // 生产环境配置
		
	} else { // 测试环境配置
		server = "http://172.19.103.88:9092/wlyy/"
		loginUrl = "http://172.19.103.88:9092/wlyy/auth/login.html"
	}
	
    var server = "http://172.19.103.88:9092/wlyy/",
        userAgent = {"id":4800,"uid":"zbqD201703150222","imei":"864394010176834","token":"fcf8310ee6d911c3f25cdecd28b9bcdd","platform":2,"hospital":"3502050100","appVersion":"1.3.6"};
    userAgent = JSON.stringify(userAgent);
	
	userAgent = localStorage.getItem(agentName)
	
	if(userAgent) {
		try{
			userAgent = JSON.parse(userAgent)
		}catch(e){
			location.replace(loginUrl+'?redirect_url='+encodeURIComponent(location.href))
		}
	} else {
		location.replace(loginUrl+'?redirect_url='+encodeURIComponent(location.href))
	}
	
//  var server = "http://172.19.103.88:9092/wlyy/",
//      userAgent = {"id":4800,"uid":"zbqD201703150222","imei":"864394010176834","token":"fcf8310ee6d911c3f25cdecd28b9bcdd","platform":2,"hospital":"3502050100","appVersion":"1.3.6"};
//  userAgent = JSON.stringify(userAgent);
	
	function httpGet(url,options) {
		//发送ajax请求
@ -19,12 +42,7 @@
					reject(res)
				},
				success: function(res) {
					if(res.code && res.code == -200) {
            			toastr && toastr.warning("登录失效,请重新登录!")
            			setTimeout(function() {
            				window.location.replace('login_v2.html')
            			},2000)
            		}
					failCodeHandle(res)
					resolve(res)
				}
			},options));
@ -45,12 +63,27 @@
					reject(res)
				},
				success: function(res) {
					failCodeHandle(res)
					resolve(res)
				}
			},options));
		})
	}
	
	function failCodeHandle(res) {
		var tip = "";
		if(res.status == 999) {
			tip = "此账号已在别处登录,请重新登录";
		} else if(res.status == 998) {
			tip = "登录超时,请重新登录";
		} else if(res.status == 997) {
			tip = "此账号未登录,请先登录"
		}
		if(tip) {
			toastr && toastr.warning(tip)
			location.replace(loginUrl+'?redirect_url='+encodeURIComponent(location.href))
		}
	}
	
	APIService = {
        httpGet: httpGet,