10 lines
275 B
JavaScript
10 lines
275 B
JavaScript
|
|
import request from "../request.js"
|
||
|
|
|
||
|
|
export function informationCategoryList() {
|
||
|
|
return request({
|
||
|
|
url: `/nurseApplet/nearbyNursingStation/informationCategoryList?moduleType=HOME_PAGE_MODULE&&jumpType=HOME_PAGE&&informationCategoryType=HEALTH_NOUS`,
|
||
|
|
method: 'GET'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|