role_menu.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. export const index = {
  2. name: '首页',
  3. path: '/',
  4. };
  5. export const menu = {
  6. name: '菜单管理',
  7. path: '/menu/index',
  8. };
  9. export const department = {
  10. name: '部门管理',
  11. path: '/department/index',
  12. };
  13. export const permission = {
  14. name: '权限管理',
  15. path: '/permission/index',
  16. };
  17. export const adminUser = {
  18. name: '机构管理员',
  19. path: '/adminUser/index',
  20. };
  21. export const business = {
  22. name: '业务管理员',
  23. path: '/business/index',
  24. };
  25. export const vip = {
  26. name: 'vip用户',
  27. path: '/vip/index',
  28. };
  29. export const user = {
  30. name: '用户管理',
  31. children: [
  32. {
  33. name: '个人&企业用户管理',
  34. path: '/user/index',
  35. },
  36. {
  37. name: '专家用户管理',
  38. path: '/user/exportIndex',
  39. },
  40. {
  41. name: '临时用户管理',
  42. path: '/user/temporaryIndex',
  43. },
  44. ],
  45. };
  46. export const duijiehui = {
  47. name: '对接会',
  48. path: '/duijiehui/index',
  49. };
  50. export const enterpriseProduct = {
  51. name: '产品供求审核管理',
  52. path: '/enterpriseProduct/index',
  53. };
  54. export const enterpriseTrans = {
  55. name: '产品供求交易状态审核管理',
  56. path: '/enterpriseTrans/index',
  57. };
  58. export const technical = {
  59. name: '技术培训',
  60. path: '/technical/index',
  61. };
  62. export const defaultMenu = {
  63. name: '平台字典管理',
  64. path: '/dictionary/index',
  65. };