import request from '@/utils/request' /** * MDT 统计 * @param {*} data * @returns */ export function getStatisticCount(data) { return request({ url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/statistic/count`, method: 'post', data }) } /** * MDT 绩效 * @param {*} data * @returns */ export function getStatisticCountByDoctor(data) { return request({ url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/statistic/doctor`, method: 'post', data }) } /** * MDT 会诊记录 * @param {*} data * @returns */ export function queryMdtManageList(data) { return request({ url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/query`, method: 'post', data }) } /** * 获取详情 * @param {*} data * @returns */ export function queryMdtDetail(data) { return request({ url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/manage/detail`, method: 'post', data }) } // 重新发送 export function resendLaunch(data) { return request({ url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/doctor/mdt/launch/apply/resendLaunch`, method: 'post', data }) } export function feeList(data) { return request({ url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/fee/data/query`, method: 'post', data }) } export function feeExport(data) { return request({ url: `${window.GLOBAL_CONFIG.API_DOCTOR}/sys/healthy/fee/data/export`, method: 'get', headers: { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' }, responseType: 'blob', data }) }