index.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. export const base_url = 'http://47.109.139.179';
  2. export const request_retry = 4;
  3. export const request_retry_delay = 800;
  4. export const default_menu = [
  5. {
  6. name: 'home',
  7. title: '人员管理',
  8. icon: 'ios-person',
  9. children: [
  10. {
  11. name: '/home/personnelMatters',
  12. title: '管理员',
  13. },
  14. {
  15. name: '/home/personnelMatters/user',
  16. title: '用户',
  17. },
  18. ],
  19. },
  20. {
  21. name: 'limitsAuthority',
  22. title: '权限配置',
  23. icon: 'ios-key',
  24. children: [
  25. {
  26. name: '/home/limitsAuthority/role',
  27. title: '角色管理',
  28. },
  29. {
  30. name: '/home/limitsAuthority/permission',
  31. title: '权限管理',
  32. },
  33. ],
  34. },
  35. {
  36. name: 'belong',
  37. title: '归属配置',
  38. icon: 'ios-locate',
  39. children: [
  40. {
  41. name: '/home/belong/organization',
  42. title: '机构管理',
  43. },
  44. {
  45. name: '/home/belong/area',
  46. title: '地域管理',
  47. },
  48. ],
  49. },
  50. {
  51. name: 'governmentAffairs',
  52. title: '政务库管理',
  53. icon: 'ios-cloud-download',
  54. children: [
  55. {
  56. name: '/home/governmentAffairs/administration',
  57. title: '行政领导配置',
  58. },
  59. ],
  60. },
  61. {
  62. name: '/home/administration',
  63. icon: 'ios-document',
  64. title: '稿件管理',
  65. },
  66. {
  67. name: '/home/medium',
  68. icon: 'ios-film',
  69. title: '媒体管理',
  70. },
  71. {
  72. name: '/home/broadcast',
  73. icon: 'ios-desktop',
  74. title: '电视广播管理',
  75. },
  76. {
  77. name: '/home/lifeService',
  78. icon: 'ios-hammer',
  79. title: '生活服务管理',
  80. },
  81. ];