store.d.ts 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. import { ErrorTypeEnum } from '/@/enums/exceptionEnum';
  2. import { MenuModeEnum, MenuTypeEnum } from '/@/enums/menuEnum';
  3. import { RoleInfo } from '/@/api/sys/model/userModel';
  4. // Lock screen information
  5. export interface LockInfo {
  6. // Password required
  7. pwd?: string | undefined;
  8. // Is it locked?
  9. isLock?: boolean;
  10. }
  11. // Error-log information
  12. export interface ErrorLogInfo {
  13. // Type of error
  14. type: ErrorTypeEnum;
  15. // Error file
  16. file: string;
  17. // Error name
  18. name?: string;
  19. // Error message
  20. message: string;
  21. // Error stack
  22. stack?: string;
  23. // Error detail
  24. detail: string;
  25. // Error url
  26. url: string;
  27. // Error time
  28. time?: string;
  29. }
  30. export interface UserInfo {
  31. id: string | number;
  32. userId: string | number;
  33. username: string;
  34. realname: string;
  35. avatar: string;
  36. desc?: string;
  37. homePath?: string;
  38. tenantid?: string | number;
  39. roles: RoleInfo[];
  40. orgCode?: string;
  41. }
  42. export interface LoginInfo {
  43. multi_depart?: string | number;
  44. userInfo?: object;
  45. departs?: [];
  46. tenantList?: [];
  47. isLogin?: boolean;
  48. }
  49. export interface BeforeMiniState {
  50. menuCollapsed?: boolean;
  51. menuSplit?: boolean;
  52. menuMode?: MenuModeEnum;
  53. menuType?: MenuTypeEnum;
  54. }