WXL (wul)
10 天以前 ab77cf83de3f6978909e6f1f3b6e0d28db456681
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
78
79
import request from "@/utils/request";
 
// 查询患者门诊记录列表
export function listPatouthosp(query) {
  return request({
    url: "/smartor/patouthosp/selectPatMedOuthospList",
    method: "post",
    data: query,
  });
}
 
// 查询患者门诊记录详细
export function getPatouthosp(id) {
  return request({
    url: "/smartor/patouthosp/" + id,
    method: "get",
  });
}
 
// 新增患者门诊记录
export function addPatouthosp(data) {
  return request({
    url: "/smartor/patouthosp",
    method: "post",
    data: data,
  });
}
 
// 修改患者门诊记录
export function updatePatouthosp(data) {
  return request({
    url: "/smartor/patouthosp/edit",
    method: "post",
    data: data,
  });
}
 
// 删除患者门诊记录
export function delPatouthosp(id) {
  return request({
    url: "/smartor/patouthosp/remove/" + id,
    method: "get",
  });
}
// 查询新生儿数据
export function newborninfo(id) {
  return request({
    url: "/smartor/growth/getInfo/" + id,
    method: "get",
  });
}
export function newborninfolist(data) {
  return request({
    url: "/smartor/growth/dateLine",
    method: "post",
    data: data,
  });
}
 
export function newborninfoadd(data) {
  return request({
    url: "/smartor/growth/add",
    method: "post",
    data: data,
  });
}
export function newborninfoedit(data) {
  return request({
    url: "/smartor/growth/edit",
    method: "post",
    data: data,
  });
}
export function newborninforemove(tagids) {
    return request({
      url: '/smartor/growth/remove/' + tagids,
      method: 'get',
    })
  };