2023-09-22 11:37:39 +08:00
|
|
|
import request from "../../request.js"
|
2023-09-22 11:08:14 +08:00
|
|
|
|
|
|
|
|
export function cancellationOrder(appointmentOrderId,cancelAppointmentReason) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/nurseApp/login/cancellationOrder?appointmentOrderId=${appointmentOrderId}&cancelAppointmentReason=${cancelAppointmentReason}`,
|
2023-10-27 15:37:24 +08:00
|
|
|
method: 'post',
|
|
|
|
|
header: {
|
|
|
|
|
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
|
|
|
|
|
},
|
2023-09-22 11:08:14 +08:00
|
|
|
})
|
|
|
|
|
}
|