Commit dce0f2f9 authored by huangyecong's avatar huangyecong

【ECCS-商保-1213】添加账单明细页面

parent aa0ad069
...@@ -2,4 +2,5 @@ ...@@ -2,4 +2,5 @@
export default { export default {
getChargeList: "/backstage/auth/receiptList", getChargeList: "/backstage/auth/receiptList",
getCompanyOptions: "/backstage/auth/payorListNopage", getCompanyOptions: "/backstage/auth/payorListNopage",
getChargeListDetail:"/backstage/auth/receiptDetailList",//账单明细
}; };
...@@ -9,8 +9,13 @@ const GETCHARGELIST = function (data) { ...@@ -9,8 +9,13 @@ const GETCHARGELIST = function (data) {
const GETCOMPANYOPTIONS = function (data) { const GETCOMPANYOPTIONS = function (data) {
return req.post(apis.getCompanyOptions, data); return req.post(apis.getCompanyOptions, data);
}; };
// get charge detail list
const GETCHARGELISTDETAIL = function (data) {
return req.post(apis.getChargeListDetail, data);
};
// 对象数组 // 对象数组
export default { export default {
GETCHARGELIST, GETCHARGELIST,
GETCOMPANYOPTIONS, GETCOMPANYOPTIONS,
GETCHARGELISTDETAIL
}; };
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment