apointment.js 674 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 myAppointmentDetail(data) {
  17. return request({
  18. method: 'get',
  19. data: data,
  20. url: '/mobile/chargingAppointment/myAppointmentDetail'
  21. })
  22. }
  23. export function regChangeStatus(data) {
  24. return request({
  25. method: 'get',
  26. data: data,
  27. url: '/mobile/chargingAppointment/regChangeStatus'
  28. })
  29. }