constant.ts 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * @Author: your name
  3. * @Date: 2022-01-14 16:09:09
  4. * @LastEditTime: 2023-12-26 19:48:10
  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/constant.ts
  8. */
  9. import platformIcon from '../public/images/platformIcon.png';
  10. import pfmIcon from '../public/images/pfmIcon.png';
  11. //菜单所有类型
  12. export const MenuTypes = [
  13. {
  14. label: '目录',
  15. value: 0,
  16. },
  17. {
  18. label: '菜单',
  19. value: 1,
  20. },
  21. {
  22. label: '按钮',
  23. value: 2,
  24. },
  25. {
  26. label: '系统',
  27. value: 3,
  28. },
  29. {
  30. label: '有数Bi',
  31. value: 4,
  32. },
  33. {
  34. label: '体系',
  35. value: 5,
  36. },
  37. {
  38. label: '中心层',
  39. value: 6,
  40. },
  41. // {
  42. // label: '平台层',
  43. // value: 7,
  44. // },
  45. ];
  46. export const Platforms = [
  47. {
  48. name: '业务中台',
  49. logo: platformIcon,
  50. },
  51. {
  52. name: '评审管理',
  53. logo: pfmIcon,
  54. },
  55. ];
  56. export const KcimCenterSysId = '1547394914533380096';