umessage.js 867 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import request from '../utils/request.js';
  2. export function findChargingGroup(data) {
  3. var url='/mobile/chargingStation/findChargingGroup';
  4. return request({
  5. method: 'post',
  6. data: data,
  7. url: url
  8. })
  9. }
  10. export function searchNearStation(data) {
  11. var url='/mobile/chargingStation/searchNearStation';
  12. return request({
  13. method: 'post',
  14. data: data,
  15. url: url
  16. })
  17. }
  18. export function timePointPrice(data) {
  19. var url='/mobile/chargingStation/timePointPrice';
  20. return request({
  21. method: 'post',
  22. data: data,
  23. url: url
  24. })
  25. }
  26. export function readyToTimingCharging(data) {
  27. var url='/mobile/chargingCar/readyToTimingCharging';
  28. return request({
  29. method: 'post',
  30. data: data,
  31. url: url
  32. })
  33. }
  34. export function loadPredictionCurve(data) {
  35. var url='/mobile/chargingStation/loadPredictionCurve';
  36. return request({
  37. method: 'post',
  38. data: data,
  39. url: url
  40. })
  41. }