systemConf.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. var __systemConf = {
  2. //基础数据根域名
  3. baseServiceUrl: '/baseService',
  4. //系统图服务域名
  5. sysGraphServiceUrl: '/sysGraphService',
  6. //导航菜单
  7. menus: [{
  8. "id": "ready",
  9. "name": "信息录入工具",
  10. "orders": 1,
  11. child: [{
  12. "id": "build_floor",
  13. "name": "建筑楼层管理",
  14. "orders": 2,
  15. "url": "/ready/buildfloor",
  16. "type": "menu",
  17. "icon": "icon-jianzhu"
  18. },{
  19. "id": "equipment",
  20. "name": "设备台账",
  21. "orders": 3,
  22. "url": "/ledger/facility"
  23. },
  24. {
  25. "id": "system",
  26. "name": "系统台账",
  27. "orders": 4,
  28. "url": "/ledger/list"
  29. },{
  30. "id": "overview",
  31. "name": "全部关系总览",
  32. "orders": 5,
  33. "url": "/relation/overview",
  34. "icon": "icon-jiqixuexi-"
  35. }
  36. ,{
  37. "id": "projectmanage",
  38. "name": "项目信息管理",
  39. "orders": 6,
  40. "url": "/project/manage",
  41. "icon": "icon-jiqixuexi-"
  42. }
  43. ]
  44. }, {
  45. "id": "xianchangjiaofugongjv",
  46. "name": "现场交付工具",
  47. "orders": 6,
  48. child: [{
  49. "id": "CADtuzhiguanli",
  50. "name": "CAD核查图纸管理",
  51. "orders": 7,
  52. "url": "/deliveryTools/cadDrawingManage",
  53. "icon": "icon-topology"
  54. }]
  55. }, {
  56. "id": "draw",
  57. "name": "绘图工具",
  58. "orders": 8,
  59. child: [{
  60. "id": "xitongtubianji",
  61. "name": "系统图编辑工具",
  62. "orders": 9,
  63. "url": "/systemGraph",
  64. "icon": "icon-topology"
  65. }]
  66. }]
  67. };
  68. window.__systemConf = __systemConf;