33 lines
763 B
JavaScript
33 lines
763 B
JavaScript
|
|
import request from "../request.js"
|
||
|
|
|
||
|
|
|
||
|
|
export function introductionList(id) {
|
||
|
|
return request({
|
||
|
|
url: `/nurseApplet/nearbyNursingStation/introductionList?nurseStationId=${id}`,
|
||
|
|
method: 'GET'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
export function getPatientInfo(id) {
|
||
|
|
return request({
|
||
|
|
url: `/nurseApplet/login/getPatientInfo?openId=${id}`,
|
||
|
|
method: 'GET'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
export function itemList(id,pageSize,pageNum) {
|
||
|
|
return request({
|
||
|
|
url: `/nurseApplet/nearbyNursingStation/itemList?pageSize=${pageSize}&pageNum=${pageNum}&nurseStationId=${id}`,
|
||
|
|
method: 'GET'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
export function productInformation(id,pageNum, pageSize) {
|
||
|
|
return request({
|
||
|
|
url: `/nurseApplet/nearbyNursingStation/productInformation?pageSize=${pageSize}&pageNum=${pageNum}&nurseStationId=${id}`,
|
||
|
|
method: 'GET'
|
||
|
|
})
|
||
|
|
}
|