2022-11-25 10:58:46 +08:00
|
|
|
import request from "../request.js"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function introductionList(id) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/nurseApplet/nearbyNursingStation/introductionList?nurseStationId=${id}`,
|
|
|
|
|
method: 'GET'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-02-16 10:44:21 +08:00
|
|
|
export function itemList(id,pageSize,pageNum,nurseClassifyInfoId) {
|
2022-11-25 10:58:46 +08:00
|
|
|
return request({
|
2023-02-16 10:44:21 +08:00
|
|
|
url: `/nurseApplet/nearbyNursingStation/itemList?pageSize=${pageSize}&pageNum=${pageNum}&nurseStationId=${id}&nurseClassifyInfoId=${nurseClassifyInfoId}`,
|
2022-11-25 10:58:46 +08:00
|
|
|
method: 'GET'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function productInformation(id,pageNum, pageSize) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/nurseApplet/nearbyNursingStation/productInformation?pageSize=${pageSize}&pageNum=${pageNum}&nurseStationId=${id}`,
|
|
|
|
|
method: 'GET'
|
|
|
|
|
})
|
|
|
|
|
}
|