apointment.js 841 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import request from '@/utils/request'
  2. export function information(data) {
  3. return request({
  4. method: 'post',
  5. data: data,
  6. url: '/mobile/chargingAppointment/information'
  7. })
  8. }
  9. export function submitAppointment(data) {
  10. return request({
  11. method: 'get',
  12. data: data,
  13. url: '/mobile/chargingAppointment/submitAppointment'
  14. })
  15. }
  16. export function myAppointmentList(data) {
  17. return request({
  18. method: 'get',
  19. data: data,
  20. url: '/mobile/chargingAppointment/myAppointmentList'
  21. })
  22. }
  23. export function myAppointmentDetail(data) {
  24. return request({
  25. method: 'get',
  26. data: data,
  27. url: '/mobile/chargingAppointment/myAppointmentDetail'
  28. })
  29. }
  30. export function regChangeStatus(data) {
  31. return request({
  32. method: 'get',
  33. data: data,
  34. url: '/mobile/chargingAppointment/regChangeStatus'
  35. })
  36. }