permission.js 978 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import router from './router';
  2. import { createDiscreteApi} from 'naive-ui';
  3. import { useUserStore } from '@/stores/modules/userStore';
  4. const whiteList = ['/login'];
  5. const TITLE_SUFFIX = ' - LibraAI智能体运营平台';
  6. const { loadingBar } = createDiscreteApi(['loadingBar'], {
  7. loadingBarProviderProps: {
  8. loadingBarStyle: {
  9. backgroundColor: "#2454FF"
  10. }
  11. }
  12. })
  13. // 简易的基础权限
  14. router.beforeEach(async (to, from, next) => {
  15. loadingBar.start();
  16. const isRouterAuth = whiteList.includes(to.path);
  17. const userStore = useUserStore();
  18. if ( to.path === '/' && userStore.isCheckUser) {
  19. return next('/answer');
  20. }
  21. if (isRouterAuth) {
  22. next()
  23. } else {
  24. const userStore = useUserStore();
  25. const { token } = userStore.userInfo;
  26. if ( !token ) {
  27. return next('/login');
  28. } else {
  29. next()
  30. }
  31. }
  32. })
  33. router.afterEach((to) => {
  34. document.title = to?.meta?.title + TITLE_SUFFIX;
  35. loadingBar.finish();
  36. })