2022-11-01 13:49:13 +08:00
|
|
|
import request from "../request.js"
|
|
|
|
|
|
|
|
|
|
|
2022-11-11 17:23:23 +08:00
|
|
|
export function getAppointmentDetailsInfo(orderNo) {
|
2022-11-01 13:49:13 +08:00
|
|
|
return request({
|
2022-11-11 17:23:23 +08:00
|
|
|
url: `/nurseApplet/nursingOrder/getAppointmentDetailsInfo?orderNo=${orderNo}`,
|
2022-11-01 13:49:13 +08:00
|
|
|
method: 'GET'
|
|
|
|
|
})
|
|
|
|
|
}
|
2022-12-27 09:21:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
//评价
|
|
|
|
|
export function addAppointmentEvaluate(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/nurseApp/orderEvaluate/addAppointmentEvaluate`,
|
|
|
|
|
method: 'POST',
|
|
|
|
|
data
|
|
|
|
|
})
|
|
|
|
|
}
|