// 报表函数库
import apis from "../apis_moudles/index";
import req from "../request";
// 理赔报表数据查询
const RECEIPTREPORTLIST = (data) => {
return req.post(apis.receiptReportList, data);
};
// 理赔报表数据导出
const EXPORTRECEIPTREPORTLIST = (data) => {
return req.post(apis.exportReceiptReportList, data, {responseType: 'blob'});
};
// 账单回款查询报表
const backMoneyReport = (data) => {
return req.post(apis.backMoneyReport, data);
};
// 账单回款导出报表
const exportBackMoneyReport = (data) => {
return req.post(apis.exportBackMoneyReport, data, {responseType: 'blob'});
};
// 对象数组
export default {
RECEIPTREPORTLIST,
EXPORTRECEIPTREPORTLIST,
backMoneyReport,
exportBackMoneyReport,
};
-
郭小龙-DEL authored
add 回款详情添加上传文件功能 fix 赔付金额填写逻辑
4f31a2ff