Browse Source

用户token验证

lian 2 years ago
parent
commit
1a2e08a0f5
2 changed files with 37 additions and 1 deletions
  1. 27 1
      src/router/index.js
  2. 10 0
      src/utils/service/jwt.js

+ 27 - 1
src/router/index.js

@@ -2,6 +2,8 @@ import Vue from 'vue'
 import Router from 'vue-router'
 import AppIndex from '../views/home/AppIndex'
 import RouterView from '../views/home/RouterView'
+import {vaildJWT} from "../utils/service/jwt";
+import {getCookie} from "../utils/service/cookie";
 
 Vue.use(Router)
 
@@ -132,7 +134,31 @@ const defaultRouter = new Router({
 
 defaultRouter.beforeEach((to, from, next) => {
   // console.log("to:", to, "from:", from)
-  next()
+  vaildJWT(getCookie("m_token")).then(res=>{
+
+    console.log(res)
+    if (res.code==="200") {
+      next()
+    }else {
+
+      window.open(
+        `http://47.101.207.123:8080/platform-rk/#/login?url=http://47.101.207.123:8080/user_authentication/#/home`,
+        "_self",
+        "",
+        true
+      )
+      // location.href = "http://47.101.207.123:8080/platform-rk/#/login?url=http://47.101.207.123:8080/user_authentication/#/home"
+    }
+  },error=>{
+    window.open(
+      `http://47.101.207.123:8080/platform-rk/#/login?url=http://47.101.207.123:8080/user_authentication/#/home`,
+      "_self",
+      "",
+      true
+    )
+    // location.href = "http://47.101.207.123:8080/platform-rk/#/login?url=http://47.101.207.123:8080/user_authentication/#/home"
+  })
+  // next()
 })
 
 export default defaultRouter

+ 10 - 0
src/utils/service/jwt.js

@@ -0,0 +1,10 @@
+import axios from "axios"
+import qs from "qs"
+import {getCookie} from '../service/cookie'
+
+export function vaildJWT(token) {
+  let data = {
+    token
+  }
+  return axios.post('/jwt/vaildJWT', qs.stringify(data))
+}