constant.ts 532 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * @Author: your name
  3. * @Date: 2022-01-14 16:09:09
  4. * @LastEditTime: 2022-01-14 16:13:10
  5. * @LastEditors: your name
  6. * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  7. * @FilePath: /KC-MiddlePlatform/src/constant.ts
  8. */
  9. //菜单所有类型
  10. export const MenuTypes = [
  11. {
  12. label: '目录',
  13. value: 0,
  14. },
  15. {
  16. label: '菜单',
  17. value: 1,
  18. },
  19. {
  20. label: '按钮',
  21. value: 2,
  22. },
  23. {
  24. label: '系统',
  25. value: 3,
  26. },
  27. ];