apiurl.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. punchInfoUrl:'/officerpunch/punchInfo/',
  18. //巡检员打卡签到
  19. punchInUrl:'/officerpunch/punchIn',
  20. //设备信息列表
  21. getDeviceListUrl:'/roadspace/list',
  22. //巡检员分配路段数据集接口
  23. getRoadListUrl:'/roadspace/getRoadList',
  24. //地磁、车位锁设备信息
  25. getSelectDeviceListUrl:'/roadspace/selectDeviceList',
  26. //设备低电量,低信号,故障分隔值数据接口
  27. geoDeviceStatustUrl:'/roadspace/type/geo_device_status',
  28. //地磁、车位锁设备详情
  29. findRoadSpaceVoByIdUrl:'/roadspace/findDeviceById',
  30. //地磁、车位锁设备详情
  31. deviceLogUrl:'/roadspace/selectDeviceLog',
  32. //设备异常上报
  33. deviceexcptionprocessUrl:'/deviceexcptionprocess',
  34. //心跳是否有车状态数据接口
  35. placeStatusUrl:'/roadspace/type/place_status',
  36. //道闸设备列表
  37. selectParkDeviceListUrl:'/roadspace/selectParkDeviceList',
  38. //查询停车场车位信息
  39. selectParkNumUrl:'/roadspace/selectParkNum',
  40. //道闸设备详细信息
  41. findParkDeviceByIdUrl:'/roadspace/findParkDeviceById',
  42. //道闸设备详细信息
  43. controlDeviceUrl:'/roadspace/roadway/control',
  44. }
  45. export {
  46. apiurl
  47. }