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
80
81
82
83
84
85
86
87
88
89
90
91
92
// 收费查询函数库
import apis from "../apis_moudles/";
import req from "../request";
// 查询寄送列表
const querySendInfoList = function (data) {
return req.post(apis.querySendInfoList, data);
};
// 删除寄送信息
const DeleteReceiptSendInfo= function (data) {
return req.post(apis.deleteReceiptSendInfo, data);
};
// 删除寄送信息下的账单信息
const deleteSendReceipt= function (data) {
return req.post(apis.deleteSendReceipt, data);
};
// 保存理赔件账单寄送信息
const saceReceipSendInfo= function (data) {
return req.post(apis.saveReceipSendInfo, data);
};
// 查询寄送包含账单列表
const querySendReceipList = function (data) {
return req.post(apis.querySendReceipList, data);
};
// 待寄送账单查询
const queryNoSendReceipList = function (data) {
return req.post(apis.queryNoSendReceipList, data);
};
// get charge list
const getChargeList = function (data) {
return req.post(apis.getChargeList, data);
};
//获取保险公司数据
const getCompanyOptions = function (data) {
return req.post(apis.getCompanyOptions, data);
};
// 获取医生列表
const getDoctorListNoPage= function (data) {
return req.post(apis.getDoctorListNoPage, data);
};
// get charge detail list
const getChargeListDetail = function (data) {
return req.post(apis.getChargeListDetail, data);
};
// 获取费用支付明细
const getReceiptPaymentDetail= function (data) {
return req.post(apis.getReceiptPaymentDetail, data);
};
// 理赔件账单寄送查询
const queryCiReceipSendList= function (data) {
return req.post(apis.queryCiReceipSendList, data);
};
// 账单结算
const receiptSettlement= function (data) {
return req.post(apis.receiptSettlement, data);
};
// 寄送关联账单导出
const sendReceipListExport= function (data) {
return req.post(apis.sendReceipListExport, data, { responseType: "blob" });
};
// 寄送关联账单导出
const noSendReceipListExport= function (data) {
return req.post(apis.noSendReceipListExport, data, { responseType: "blob" });
};
// 账单打印
const receiptPrint= function (data) {
return req.post(apis.receiptPrint, data);
};
// 账单导出报表
const rceiptListReport = (data) => {
return req.post(apis.rceiptListReport, data, {responseType: 'blob'});
};
// 对象数组
export default {
querySendInfoList,
DeleteReceiptSendInfo,
deleteSendReceipt,
saceReceipSendInfo,
querySendReceipList,
queryNoSendReceipList,
getChargeList,
getCompanyOptions,
getDoctorListNoPage,
getChargeListDetail,
getReceiptPaymentDetail,
queryCiReceipSendList,
receiptSettlement,
sendReceipListExport,
receiptPrint,
rceiptListReport,
noSendReceipListExport,
};