typings.d.ts 971 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * @Author: your name
  3. * @Date: 2022-01-10 13:56:19
  4. * @LastEditTime: 2022-07-11 18:12:01
  5. * @LastEditors: code4eat awesomedema@gmail.com
  6. * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  7. * @FilePath: /KC-MiddlePlatform/src/components/topBar/typings.d.ts
  8. */
  9. declare namespace TopBar {
  10. export type Tab = {
  11. menuId: number | string;
  12. systemId: string;
  13. name: string;
  14. icon?: string;
  15. url?: string;
  16. path: string;
  17. type:number;
  18. contentType:string;
  19. isSetupMenu?:number;
  20. };
  21. export type TypeBlock = {
  22. icon?: string;
  23. name: string;
  24. menuId: number | string;
  25. path: string;
  26. type:number;
  27. contentType:string;
  28. systemId: string;
  29. child: Tab[]
  30. }
  31. export type PanelData = {
  32. name: string;
  33. menuId: number | string;
  34. path: string;
  35. icon?: string;
  36. systemId: string;
  37. type:number;
  38. child: TypeBlock[]
  39. }
  40. }