resident.js 430 Bytes
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 })
}