Browse Source

登录过期跳转

gcz 4 years ago
parent
commit
8dc83b7e5a
2 changed files with 17 additions and 2 deletions
  1. 16 1
      main.js
  2. 1 1
      wxapi.js

+ 16 - 1
main.js

@@ -14,7 +14,22 @@ http.interceptors.response.use((response) => { /* 对响应成功做点什么 
 	   });
 	 };
 	 if(response.data.code == 401){
-		// console.log(response) 
+		 // console.log('response',response);
+		uni.showToast({
+		 	title:response.data.message + "    即将跳转到登录页",
+		 	icon:"none",
+		 	duration:2000
+		});
+		setTimeout(i=>{
+			uni.navigateTo({
+				url: '/pages/login/login',
+				fail:function(err){
+					console.log(err)
+				}
+			});
+		},2000);
+		return Promise.reject(response) 
+		
 	 };
      // return Promise.reject(response) // return Promise.reject 可使promise状态进入catch
  if (response.config.custom.verification) { // 演示自定义参数的作用

+ 1 - 1
wxapi.js

@@ -12,7 +12,7 @@ const $http = new Request();
 // encodeURIComponent
 const href = location.href.split('#')[0];
 // const href = location.href.split("?")[0];
-console.log('href',href);
+// console.log('href',href);
 
 
 let token = uni.getStorageSync("token");