Prechádzať zdrojové kódy

统一登录平台对接CRM登录

jwyu 7 mesiacov pred
rodič
commit
b4ad3bbb1b
3 zmenil súbory, kde vykonal 75 pridanie a 0 odobranie
  1. 8 0
      src/router/index.js
  2. 66 0
      src/views/AutoLogin.vue
  3. 1 0
      src/views/Login.vue

+ 8 - 0
src/router/index.js

@@ -24,6 +24,14 @@ const routes = [
       title:'登录'
     }
   },
+  {
+    path:'/temppage',
+    name:'AutoLogin',
+    component: () => import("@/views/AutoLogin.vue"),
+    meta:{
+      title:'登录'
+    }
+  },
   {
     path: "/:pathMatch(.*)",
     name: "error",

+ 66 - 0
src/views/AutoLogin.vue

@@ -0,0 +1,66 @@
+<script setup>
+import { apiSystemCommon, apiSystemRole } from '@/api/system'
+import { useRoute, useRouter } from "vue-router";
+import { ElMessage } from 'element-plus'
+
+
+const route = useRoute()
+const router = useRouter()
+
+// 获取菜单跳转到第一个菜单
+function getMenuList() {
+  apiSystemRole.menuData().then(res => {
+    if (res.Ret === 200) {
+      const arr = res.Data || []
+      if (arr.length === 0) {
+        ElMessage.warning('您暂无任何菜单权限请联系管理员')
+        return
+      }
+      let path = ''
+      if (arr[0]?.Children[0]) {
+        path = arr[0].Children[0].Path
+      } else {
+        path = arr[0].Path
+      }
+      router.replace(path)
+    }
+  })
+}
+
+async function init() {
+  if (!route.query.code) {
+    router.replace('/login')
+    return
+  }
+  const t = new Date().getTime()
+  const res = await apiSystemCommon.login({
+    LoginType: 'sso',
+    Code: route.query.code,
+    ReqTime: `${t}`,
+  })
+  if (res.Ret === 200) {
+    localStorage.setItem('token', res.Data.Authorization)
+    localStorage.setItem('userName', res.Data.SysRealName)
+    getMenuList()
+  }
+}
+init()
+
+
+
+</script>
+
+<template>
+  <div
+    class="auto-login-page"
+    v-loading="true"
+    element-loading-text="登录中..."
+  ></div>
+</template>
+
+<style lang="scss" scoped>
+.auto-login-page {
+  width: 100%;
+  height: 100%;
+}
+</style>

+ 1 - 0
src/views/Login.vue

@@ -25,6 +25,7 @@ async function submitForm(formEl) {
       const t = new Date().getTime()
       const md5key = 'MiQM9YUdf89T2uIH'
       apiSystemCommon.login({
+        LoginType:'password',
         Username: formState.account,
         password: md5(md5(formState.pwd) + md5key + `${t}`),
         ReqTime: `${t}`,