import request from "@/utils/request"; // 查询门诊看病人次和人数 export function getEChartsPatMedOuthospCount(data) { return request({ url: "/smartor/patouthosp/selectPatMedOuthospCount", method: "post", data: data, }); } // 查询出、入院看病人次和人数 export function getechartsListCountdata(data) { return request({ url: "/smartor/patinhosp/selectPatMedInhospListCount", method: "post", data: data, }); } // 查询患者门诊记录列表 export function getechartsMedOuthospList(data) { return request({ url: "/smartor/patouthosp/selectPatMedOuthospList", method: "post", data: data, }); } // 首页中部数据 export function getServiceStatistics(data) { return request({ url: "/smartor/serviceSubtask/getServiceStatistics", method: "post", data: data, }); } // 查询患者住院记录列表 export function getechartsMedInhospList(data) { return request({ url: "/smartor/patinhosp/selectPatMedInhospList", method: "post", data: data, }); } // 查询当前登陆人自己(病区、部门)的患者住院记录列表 export function getechartsandData(data) { return request({ url: "/smartor/patinhosp/selectPatMedInhospListByCondition", method: "post", data: data, }); } // 各科室服务人次 export function getDeptRanking(data) { return request({ url: "/smartor/patinhosp/getDeptRanking", method: "post", data: data, }); } // 获取orgid // 再次随访服务 export function getorganization(data) { return request({ url: "/smartor/organization/list", method: "get", }); } // 发送短信 export function sendMsg(data) { return request({ url: "/sms/send", method: "post", data: data }); }