menu-link.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. (function() {
  2. var menuLinkMap = {
  3. "厂家/代理商管理": "../agent/supplier.html",
  4. "订单管理": "../order/order.html",
  5. "设备管理": "../device/device.html",
  6. "质控管理": "../quality/quality.html",
  7. "标准字典管理": "../dictionary/dictionary.html",
  8. "数据元管理": "../dictionary/data-element.html",
  9. "角色管理": "../authorization/role.html",
  10. "用户管理": "../authorization/user.html",
  11. "接入应用管理": "../application/application.html",
  12. "共享接口管理": "../sharedInterface/sharedInterface.html",
  13. "业务类别管理": "../sharedInterface/business-category-management.html",
  14. "接口调用情况": "../sharedInterface/use-interface-history.html",
  15. "数据消费": "../application/application.html",
  16. "设备数据管理": "http://www.xmtyw.cn/wlyy-manage/admin/device/initial?randen=0.9073495843992938",
  17. "体征数据查询": "http://www.xmtyw.cn/wlyy-manage/admin/healthIndex/initial?randen=0.29228828594130324",
  18. "居民设备查询": "http://www.xmtyw.cn/wlyy-manage/admin/patientDevice/initial?randen=0.32764192289126054",
  19. "新增厂家/代理商": "../agent/new-supplier.html",
  20. "供应商选项卡页": "../agent/supplier-tabs.html",
  21. "企业信息": "../agent/company-detail.html",
  22. "企业产品": "../agent/company-production.html",
  23. "企业证书": "../agent/company-book.html",
  24. "修改密码": "../agent/modify-psw.html",
  25. "编辑厂家/代理商": "../agent/edit-supplier.html",
  26. "产品详情": "../agent/production-tabs.html",
  27. "产品信息": "../agent/production-info.html",
  28. "供货授权": "../agent/production-power.html",
  29. "新增产品": "../agent/new-production.html",
  30. "编辑产品": "../agent/edit-production.html",
  31. "选择代理产品": "../agent/select-production.html",
  32. "选择测量数据": "../agent/select-testdata.html",
  33. "新增供货授权": "../agent/new-power.html",
  34. "编辑供货授权": "../agent/edit-power.html",
  35. "新增订单": "../order/new-order.html",
  36. "编辑订单": "../order/edit-order.html",
  37. "订单选项卡页": "../order/order-tabs.html",
  38. "订单信息": "../order/order-detail.html",
  39. "采购清单": "../order/purchasing-device.html",
  40. "新增采购设备": "../order/new-purchasing-device.html",
  41. "采购设备详情": "../order/purchasing-device-detail.html",
  42. "关联设备": "../order/associated-device.html", // 设备列表
  43. "新增关联设备": "../order/new-associated-device.html",
  44. "批量导入关联设备": "../order/import-associated-devices-file.html", // 批量导入(关联设备列表数据)
  45. "选择产品": "../order/select-device.html",
  46. "导入历史记录": "../order/import-history.html",
  47. "新增设备": "../device/new-device.html",
  48. "设备选项卡页": "../device/device-tabs.html",
  49. "设备详情": "../device/device-detail.html",
  50. "体征数据": "../device/physical-sign.html",
  51. "流量卡管理": "../device/revise-process.html",
  52. "完成质检": "../quality/finish-quality.html",
  53. "新增质检计划": "../quality/new-quality.html",
  54. "质检详情": "../quality/quality-tabs.html",
  55. "质检计划": "../quality/quality-plan.html",
  56. // "订单信息": "../quality/order-info.html",
  57. "选择时间": "../quality/select-date.html",
  58. "新增接入应用": "../application/new-application.html",
  59. "编辑应用信息": "../application/edit-application.html",
  60. "接入应用详情": "../application/application-tabs.html",
  61. "应用信息": "../application/application-info.html",
  62. "接口权限": "../application/application-power.html",
  63. "选择接口": "../application/select-API.html",
  64. "修改账号密码": "../application/modify-psw.html",
  65. "新增共享接口": "../sharedInterface/new-interface.html",
  66. "编辑共享接口": "../sharedInterface/new-interface.html",
  67. "共享接口详情": "../sharedInterface/detail-interface.html",
  68. "新增业务类别": "../sharedInterface/new-business-type.html",
  69. "编辑业务类别": "../sharedInterface/new-business-type.html",
  70. "业务类别信息": "../sharedInterface/detail-business-category.html",
  71. "远程监测平台": "../intelligentDevice/home.html"
  72. }
  73. window.menuLinkMap = {}
  74. _.map(menuLinkMap, function(v, k) {
  75. window.menuLinkMap[k] = {
  76. title: k,
  77. href: v
  78. }
  79. })
  80. })()