WXL (wul)
3 天以前 16cf0f0ab45f58a7fe3ad35d657eecc432e0aac2
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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
  });
}