2022-10-20 09:29:39 +08:00
|
|
|
import request from "../request.js"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function getAppPatientList(id) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/nurseApp/login/getAppPatientList?patientId=${id}`,
|
|
|
|
|
method: 'GET'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function getAppStationItemInfo(stationId, stationItemId, stationItemPriceId) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/nurseApp/login/getAppStationItemInfo?stationId=${stationId}&stationItemId=${stationItemId}&stationItemPriceId=${stationItemPriceId}`,
|
|
|
|
|
method: 'GET'
|
|
|
|
|
})
|
|
|
|
|
}
|
2022-10-21 17:44:04 +08:00
|
|
|
export function submitAppointment(data) {
|
2022-10-20 09:29:39 +08:00
|
|
|
return request({
|
2022-11-11 14:19:07 +08:00
|
|
|
url: `/nurseApplet/login/appointment`,
|
2022-10-20 09:29:39 +08:00
|
|
|
method: 'post',
|
|
|
|
|
data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|