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
| import request from "@/utils/request";
|
| // 门诊基础数据
| export function getoutpatientamount(data) {
| return request({
| url: "/smartor/patouthosp/selectPatMedOuthospCount",
| method: "post",
| data: data,
| });
| }
| // 在院/出院基础数据
| export function getInhospital(data) {
| return request({
| url: "/smartor/patinhosp/selectPatMedInhospListCount",
| method: "post",
| data: data,
| });
| }
| // 中部数据据
| export function getBarchart(data) {
| return request({
| url: "/smartor/serviceSubtask/getSfFzInfoEveryMonth",
| method: "post",
| data: data,
| });
| }
|
| // 拿取中部数据大图
| export function getMissiondata(Id) {
| return request({
| url: "/smartor/serviceSubtask/getSfFzInfoEveryMonth",
| ethod: "post",
| data: data,
| });
| }
|
|