guide.js 398 Bytes
import { fetchBase } from '../fetch.js'

// 查询指导列表
export function queryGuideList(params, loading) {
    return fetchBase({ url: `/chronic-resident/v1/chronic-health-guidance/page`, body: params, loading })
}

// 慢病高危筛查详情
export function queryGuideDetail(id) {
    return fetchBase({ url: `/chronic-resident/v1/chronic-health-guidance/detail/${id}`, loading: true })
}