WXL
2025-04-30 6be49398a90a339a6c72ac9ea7a09fc368acda87
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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 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,
  });
}