store.d.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. userName: string;
  33. realName: string;
  34. avatar: string;
  35. desc?: string;
  36. homePath?: string;
  37. roles: RoleInfo[];
  38. updateTime: string;
  39. updateUser: string;
  40. appid: number;
  41. companyId: number;
  42. companyName: string;
  43. createTime: number;
  44. createUser: string;
  45. fdkkUser: string;
  46. head: string;
  47. memoName: string;
  48. message: string;
  49. nickName: string;
  50. phone: string;
  51. roleIdList: number[];
  52. roleList: string;
  53. roleName: string;
  54. state: string;
  55. token: string;
  56. type: number;
  57. }
  58. export interface BeforeMiniState {
  59. menuCollapsed?: boolean;
  60. menuSplit?: boolean;
  61. menuMode?: MenuModeEnum;
  62. menuType?: MenuTypeEnum;
  63. }