apointment.js 352 B

1234567891011121314151617181920
  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. }