import {fetchBase} from '@/api/doctor/doctorFetch' // 居民档案ID查询居民信息 export function queryResidentInfo(params) { return fetchBase({ url: `/chronic-admin/v1/chronic-residents-record/detailed`, body: params, loading: true }) } //更新居民基本信息 export function updateResident(params) { return fetchBase({ url: `/chronic-admin/v1/chronic-residents-record/update`, body: params, loading: true }) } // 慢性病管理列表查询 export function getResidentByPage(params) { return fetchBase({ url: `/chronic-admin/v1/chronic-residents-record/page`, body: params, loading: true }) }