26 lines
576 B
JavaScript
26 lines
576 B
JavaScript
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'
|
|
})
|
|
}
|
|
export function appointment(data) {
|
|
return request({
|
|
url: `/nurseApplet/login/appointment`,
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|