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
| import request from "/@/utils/request";
|
| /**
| * 查询检索血透患者
| *@param params 要传的参数值
| *@return 返回的接口数据
| */
| export function QueryList(params: object) {
| return request({
| url: '/patient/info/list',
| method: 'post',
| headers: {
| 'Content-Type': 'application/x-www-form-urlencoded'
| },
| params
| });
| }
|
|
| export function getPatData(params: object) {
| return request({
| url: '/nutrition/getPatData',
| method: 'post',
| headers: {
| 'Content-Type': 'application/x-www-form-urlencoded'
| },
| params
| });
| }
| /**
| *
| * @param params
| * @returns 患者检验结果
| */
| export function getLisResults(params: object) {
| return request({
| url: '/lis/report/getLatestReportByPat',
| method: 'post',
| headers: {
| 'Content-Type': 'application/x-www-form-urlencoded'
| },
| params
| });
| }
| export function update(params: Object) {
| return request({
| url: '/patient/info/update',
| method: 'post',
| data: params,
| });
| }
|
|