apiurl.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. const apiurl = {
  2. //登录
  3. loginUrl:'/auth/login',
  4. //车主查询接口
  5. getParkingRecordUrl:'/orderinfo/vehicleList',
  6. //首页设备统计
  7. getDeviceStatisUrl:'/roadspace/staticDevice',
  8. //修改密码
  9. updatePwdUrl:'/officerinfo/updatePwd',
  10. //退出登录
  11. getLoginOutUrl:'/auth/loginOut',
  12. //所有路段、停车场数据集接口
  13. getRoadAllListUrl:'/roadspace/getRoadAllList',
  14. //问题上报接口
  15. reportUrl:'/deviceexcptionprocess/addOtherExcption',
  16. //其他问题上报历史记录列表
  17. selectOtherExcptionList:'/deviceexcptionprocess/selectOtherExcptionList',
  18. //查看上报问题详情
  19. reportDetail:'/deviceexcptionprocess/getById',
  20. //应急处置列表
  21. emergencyReportList:'/deviceexcptionprocess/selectHandleExcptionList',
  22. //问题上报接口
  23. reportEmergency:'/deviceexcptionprocess/addHandleExcption',
  24. //收费员问题类型数据接口
  25. payeeExceptionType:'/roadspace/type/payee_exception_type',
  26. //收费员问题列表
  27. payeeReportList:'/payeeexcption',
  28. //收费员问题上报
  29. payeeReport:'/payeeexcption',
  30. //收费员问题详情
  31. payeeReportDetail:'/payeeexcption/getById',
  32. //查询巡检员打卡路段信息
  33. punchInfoUrl:'/officerpunch/punchInfo/',
  34. //巡检员打卡签到
  35. punchInUrl:'/officerpunch/punchIn',
  36. //设备信息列表
  37. getDeviceListUrl:'/roadspace/list',
  38. //巡检员分配路段数据集接口
  39. getRoadListUrl:'/roadspace/getRoadList',
  40. //地磁、车位锁设备信息
  41. getSelectDeviceListUrl:'/roadspace/selectDeviceList',
  42. //设备低电量,低信号,故障分隔值数据接口
  43. geoDeviceStatustUrl:'/roadspace/type/geo_device_status',
  44. //车位锁低电量、故障数据接口
  45. lockDeviceStatustUrl:'/roadspace/type/lock_device_status',
  46. //地磁、车位锁设备详情
  47. findRoadSpaceVoByIdUrl:'/roadspace/findDeviceById',
  48. //地磁、车位锁设备详情
  49. deviceLogUrl:'/roadspace/selectDeviceLog',
  50. //设备异常上报
  51. deviceexcptionprocessUrl:'/deviceexcptionprocess',
  52. //心跳是否有车状态数据接口
  53. placeStatusUrl:'/roadspace/type/place_status',
  54. //道闸设备列表
  55. selectParkDeviceListUrl:'/roadspace/selectParkDeviceList',
  56. //查询停车场车位信息
  57. selectParkNumUrl:'/roadspace/selectParkNum',
  58. //道闸设备详细信息
  59. findParkDeviceByIdUrl:'/roadspace/findParkDeviceById',
  60. //道闸设备详细信息
  61. controlDeviceUrl:'/roadspace/roadway/control',
  62. //通知消息列表
  63. inspecmsgUrl:'/inspecmsg',
  64. //查看通知消息详情
  65. inspecmsgDetailsUrl:'/inspecmsg/findById',
  66. //修改通知为已读
  67. updateInspecMsgStatusUrl:'/inspecmsg/updateInspecMsgStatus',
  68. //查询未读通知数
  69. getUnreadMsgTotalUrl:'/inspecmsg/selectNoRedNum',
  70. //车位锁挡板状态数据接口
  71. deviceLockStatusUrl:'/roadspace/type/device_lock_status',
  72. //收费员列表
  73. payeeList:'/payeeexcption/selectPayeeInfo',
  74. }
  75. export {
  76. apiurl
  77. }