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 apis from "../apis_moudles/index";
import req from "../request";
//患者列表无分页
const patientListNoPage = (data) => {
return req.post(apis.patientListNoPage, data);
};
//根据患者查询保司列表
const patientPayorList = (data) => {
return req.post(apis.patientPayorList, data);
};
//根据患者查询保单列表
const patientPolicyList = (data) => {
return req.post(apis.patientPolicyList, data);
};
//创建预授权
const createAuthorize = function (data) {
return req.post(apis.createAuthorize, data);
};
//预授权列表
const getAuthorizeList = function (data) {
return req.post(apis.authorizeList, data);
};
//预授权详情
const getAuthorizeDetail = function (data) {
return req.post(apis.authorizeDetail, data);
};
//预授权修改
const authorizeUpdate = function (data) {
return req.post(apis.authorizeUpdate, data);
};
//预授权删除
const authorizeDelete = function (data) {
return req.post(apis.authorizeDelete, data);
};
//预授权使用列表
const authorizeUseList = function (data) {
return req.post(apis.authorizeUseList, data);
};
//新增预授权使用
const authorizeUseAdd = function (data) {
return req.post(apis.authorizeUseAdd, data);
};
//预授权邮件
const authorizeSendEmail = function (data) {
return req.post(apis.authorizeSendEmail, data);
};
//预览邮件
const authorizeEmailView = function (data) {
return req.post(apis.authorizeEmailView, data);
};
// 对象数组
export default {
patientListNoPage,
patientPayorList,
patientPolicyList,
createAuthorize,
getAuthorizeList,
getAuthorizeDetail,
authorizeUpdate,
authorizeDelete,
authorizeUseList,
authorizeUseAdd,
authorizeSendEmail,
authorizeEmailView,
};