apiurl.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. export {
  38. apiurl
  39. }