You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
356 B
JavaScript
14 lines
356 B
JavaScript
import request from './index'
|
|
|
|
export const createAppointment = (data) => {
|
|
return request({ url: '/h5/appointment/create', data })
|
|
}
|
|
|
|
export const cancelAppointment = (data) => {
|
|
return request({ url: '/h5/appointment/cancel', data })
|
|
}
|
|
|
|
export const rescheduleAppointment = (data) => {
|
|
return request({ url: '/h5/appointment/reschedule', data })
|
|
}
|