找回密码
 立即注册
查看: 5|回复: 0

2,若依验证码实现

[复制链接]

280

主题

6

精华

284

金币

技术维护QQ:515138

积分
611
发表于 2 小时前 | 显示全部楼层 |阅读模式
1.jpg


//在permission.js里面,定义了全局前置路由守卫,如果没有登录,跳转到登录组件
//通过token判断是否登录

  1. import router from './router'
  2. import { ElMessage } from 'element-plus'
  3. import NProgress from 'nprogress'
  4. import 'nprogress/nprogress.css'
  5. import { getToken } from '@/utils/auth'
  6. import { isHttp, isPathMatch } from '@/utils/validate'
  7. import { isRelogin } from '@/utils/request'
  8. import useUserStore from '@/store/modules/user'
  9. import useSettingsStore from '@/store/modules/settings'
  10. import usePermissionStore from '@/store/modules/permission'
  11. NProgress.configure({ showSpinner: false })
  12. const whiteList = ['/login', '/register']
  13. const isWhiteList = (path) => {
  14.   return whiteList.some(pattern => isPathMatch(pattern, path))
  15. }
  16. //  to来自哪个路由,from跳转路由
  17. router.beforeEach((to, from, next) => {
  18.   NProgress.start()
  19.   if (getToken()) {
  20.     to.meta.title && useSettingsStore().setTitle(to.meta.title)
  21.     /* has token*/
  22.     if (to.path === '/login') { // 如果已经登录了,再访问login页面跳转到首页
  23.       next({ path: '/' })
  24.       NProgress.done()
  25.     } else if (isWhiteList(to.path)) {
  26.       next()
  27.     } else {
  28.       if (useUserStore().roles.length === 0) {
  29.         isRelogin.show = true
  30.         // 判断当前用户是否已拉取完user_info信息
  31.         useUserStore().getInfo().then(() => {
  32.           isRelogin.show = false
  33.           usePermissionStore().generateRoutes().then(accessRoutes => {
  34.             // 根据roles权限生成可访问的路由表
  35.             accessRoutes.forEach(route => {
  36.               if (!isHttp(route.path)) {
  37.                 router.addRoute(route) // 动态添加可访问路由表
  38.               }
  39.             })
  40.             next({ ...to, replace: true }) // hack方法 确保addRoutes已完成
  41.           })
  42.         }).catch(err => {
  43.           useUserStore().logOut().then(() => {
  44.             ElMessage.error(err)
  45.             next({ path: '/' })
  46.           })
  47.         })
  48.       } else {
  49.         next()
  50.       }
  51.     }
  52.   } else {
  53.     // 没有token
  54.     if (isWhiteList(to.path)) {
  55.       // 在免登录白名单,直接进入
  56.       next()  // 放行
  57.     } else {
  58.       next(`/login?redirect=${to.fullPath}`) // 否则全部重定向到登录页
  59.       NProgress.done()
  60.     }
  61.   }
  62. })
  63. router.afterEach(() => {
  64.   NProgress.done()
  65. })
复制代码
  1. import { createWebHistory, createRouter } from 'vue-router'
  2. /* Layout */
  3. import Layout from '@/layout'
  4. /**
  5. * Note: 路由配置项
  6. *
  7. * hidden: true                     // 当设置 true 的时候该路由不会再侧边栏出现 如401,login等页面,或者如一些编辑页面/edit/1
  8. * alwaysShow: true                 // 当你一个路由下面的 children 声明的路由大于1个时,自动会变成嵌套的模式--如组件页面
  9. *                                  // 只有一个时,会将那个子路由当做根路由显示在侧边栏--如引导页面
  10. *                                  // 若你想不管路由下面的 children 声明的个数都显示你的根路由
  11. *                                  // 你可以设置 alwaysShow: true,这样它就会忽略之前定义的规则,一直显示根路由
  12. * redirect: noRedirect             // 当设置 noRedirect 的时候该路由在面包屑导航中不可被点击
  13. * name:'router-name'               // 设定路由的名字,一定要填写不然使用<keep-alive>时会出现各种问题
  14. * query: '{"id": 1, "name": "ry"}' // 访问路由的默认传递参数
  15. * roles: ['admin', 'common']       // 访问路由的角色权限
  16. * permissions: ['a:a:a', 'b:b:b']  // 访问路由的菜单权限
  17. * meta : {
  18.     noCache: true                   // 如果设置为true,则不会被 <keep-alive> 缓存(默认 false)
  19.     title: 'title'                  // 设置该路由在侧边栏和面包屑中展示的名字
  20.     icon: 'svg-name'                // 设置该路由的图标,对应路径src/assets/icons/svg
  21.     breadcrumb: false               // 如果设置为false,则不会在breadcrumb面包屑中显示
  22.     activeMenu: '/system/user'      // 当路由设置了该属性,则会高亮相对应的侧边栏。
  23.   }
  24. */
  25. // 公共路由
  26. export const constantRoutes = [
  27.   {
  28.     path: '/redirect',
  29.     component: Layout,
  30.     hidden: true,
  31.     children: [
  32.       {
  33.         path: '/redirect/:path(.*)',
  34.         component: () => import('@/views/redirect/index.vue')
  35.       }
  36.     ]
  37.   },
  38.   {
  39.     path: '/login',
  40.     component: () => import('@/views/login'),
  41.     hidden: true
  42.   },
  43.   {
  44.     path: '/register',
  45.     component: () => import('@/views/register'),
  46.     hidden: true
  47.   },
  48.   {
  49.     path: "/:pathMatch(.*)*",
  50.     component: () => import('@/views/error/404'),
  51.     hidden: true
  52.   },
  53.   {
  54.     path: '/401',
  55.     component: () => import('@/views/error/401'),
  56.     hidden: true
  57.   },
  58.   {
  59.     path: '',
  60.     component: Layout,
  61.     redirect: '/index',
  62.     children: [
  63.       {
  64.         path: '/index',
  65.         component: () => import('@/views/index'),  // 路由懒加载,用到了再加载
  66.         name: 'Index',
  67.         meta: { title: '首页', icon: 'dashboard', affix: true }
  68.       }
  69.     ]
  70.   },
  71.   {
  72.     path: '/user',
  73.     component: Layout,
  74.     hidden: true,
  75.     redirect: 'noredirect',
  76.     children: [
  77.       {
  78.         path: 'profile/:activeTab?',
  79.         component: () => import('@/views/system/user/profile/index'),
  80.         name: 'Profile',
  81.         meta: { title: '个人中心', icon: 'user' }
  82.       }
  83.     ]
  84.   }
  85. ]
  86. // 动态路由,基于用户权限动态去加载
  87. export const dynamicRoutes = [
  88.   {
  89.     path: '/system/user-auth',
  90.     component: Layout,
  91.     hidden: true,
  92.     permissions: ['system:user:edit'],
  93.     children: [
  94.       {
  95.         path: 'role/:userId(\\d+)',
  96.         component: () => import('@/views/system/user/authRole'),
  97.         name: 'AuthRole',
  98.         meta: { title: '分配角色', activeMenu: '/system/user' }
  99.       }
  100.     ]
  101.   },
  102.   {
  103.     path: '/system/role-auth',
  104.     component: Layout,
  105.     hidden: true,
  106.     permissions: ['system:role:edit'],
  107.     children: [
  108.       {
  109.         path: 'user/:roleId(\\d+)',
  110.         component: () => import('@/views/system/role/authUser'),
  111.         name: 'AuthUser',
  112.         meta: { title: '分配用户', activeMenu: '/system/role' }
  113.       }
  114.     ]
  115.   },
  116.   {
  117.     path: '/system/dict-data',
  118.     component: Layout,
  119.     hidden: true,
  120.     permissions: ['system:dict:list'],
  121.     children: [
  122.       {
  123.         path: 'index/:dictId(\\d+)',
  124.         component: () => import('@/views/system/dict/data'),
  125.         name: 'Data',
  126.         meta: { title: '字典数据', activeMenu: '/system/dict' }
  127.       }
  128.     ]
  129.   },
  130.   {
  131.     path: '/monitor/job-log',
  132.     component: Layout,
  133.     hidden: true,
  134.     permissions: ['monitor:job:list'],
  135.     children: [
  136.       {
  137.         path: 'index/:jobId(\\d+)',
  138.         component: () => import('@/views/monitor/job/log'),
  139.         name: 'JobLog',
  140.         meta: { title: '调度日志', activeMenu: '/monitor/job' }
  141.       }
  142.     ]
  143.   },
  144.   {
  145.     path: '/tool/gen-edit',
  146.     component: Layout,
  147.     hidden: true,
  148.     permissions: ['tool:gen:edit'],
  149.     children: [
  150.       {
  151.         path: 'index/:tableId(\\d+)',
  152.         component: () => import('@/views/tool/gen/editTable'),
  153.         name: 'GenEdit',
  154.         meta: { title: '修改生成配置', activeMenu: '/tool/gen' }
  155.       }
  156.     ]
  157.   }
  158. ]
  159. const router = createRouter({
  160.   history: createWebHistory(),
  161.   routes: constantRoutes,
  162.   scrollBehavior(to, from, savedPosition) {
  163.     if (savedPosition) {
  164.       return savedPosition
  165.     }
  166.     return { top: 0 }
  167.   },
  168. })
  169. export default router
复制代码
2,发送验证码路径 http://localhost/dev-api/captchaImage,前端跨域

2.jpg
vite.config.js

3.jpg

4.jpg 5.jpg

前端拼接后端传来的img验证码:
1.jpg
2.jpg


上一篇:1,若依前后端分离文件结构
下一篇:3,若依缓存使用
网站建设,公众号小程序开发,系统定制,软件App开发,技术维护【联系我们】手机/微信:17817817816 QQ:515138

QQ|Archiver|自丢网 ( 粤ICP备2024252464号-1 )

GMT+8, 2026-3-12 16:27

专注于网站建设,公众号小程序制作,商城小程序,系统定制,软件App开发

【联系我们】手机/微信:17817817816 QQ:515138

快速回复 返回顶部 返回列表