2023-09-22 11:30:57 +08:00
|
|
|
import request from "../../request.js"
|
2023-09-22 11:08:14 +08:00
|
|
|
|
|
|
|
|
export function getHeathHousingList(pageNum, pageSize) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/nurseApplet/nearbyNursingStation/getHeathHousingList?pageNum=${pageNum}&pageSize=${pageSize}&informationCategoryType=HEALTH_NOUS`,
|
|
|
|
|
method: 'get',
|
2023-10-12 11:24:37 +08:00
|
|
|
header: {
|
|
|
|
|
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
|
|
|
|
|
},
|
2023-09-22 11:08:14 +08:00
|
|
|
})
|
2023-10-12 11:24:37 +08:00
|
|
|
}
|