Commit 55706eab authored by yanglilong's avatar yanglilong

Merge branch 'yanglilong' of git.ssish.com:sunhailiang/bims into test

parents 9a4e2c0b 7bec9043
...@@ -5,4 +5,7 @@ export default { ...@@ -5,4 +5,7 @@ export default {
getDoctorListNoPage:"/backstage/auth/doctorListNoPage",//医生列表 getDoctorListNoPage:"/backstage/auth/doctorListNoPage",//医生列表
getChargeListDetail:"/backstage/auth/receiptDetailList",//账单明细 getChargeListDetail:"/backstage/auth/receiptDetailList",//账单明细
getReceiptPaymentDetail:"/backstage/auth/receiptPaymentDetail",//账单明细 getReceiptPaymentDetail:"/backstage/auth/receiptPaymentDetail",//账单明细
queryCiReceipSendList:"/backstage/auth/queryCiReceipSendList",//理赔件账单寄送查询
saveReceipSendInfo:"/backstage/auth/saveReceipSendInfo",//保存理赔件账单寄送信息
deleteReceiptSendInfo:"/backstage/auth/deleteReceiptSendInfo",//删除寄送信息
}; };
...@@ -21,11 +21,26 @@ const GETCHARGELISTDETAIL = function (data) { ...@@ -21,11 +21,26 @@ const GETCHARGELISTDETAIL = function (data) {
const GETRECEIPTPAYMENTDETAIL= function (data) { const GETRECEIPTPAYMENTDETAIL= function (data) {
return req.post(apis.getReceiptPaymentDetail, data); return req.post(apis.getReceiptPaymentDetail, data);
}; };
// 理赔件账单寄送查询
const QUERYCIRECEIPSENDLIST= function (data) {
return req.post(apis.queryCiReceipSendList, data);
};
// 保存理赔件账单寄送信息
const SAVERECEIPSENDINFO= function (data) {
return req.post(apis.saveReceipSendInfo, data);
};
// 删除寄送信息
const DELETERECEIPTSENDINFO= function (data) {
return req.post(apis.deleteReceiptSendInfo, data);
};
// 对象数组 // 对象数组
export default { export default {
GETCHARGELIST, GETCHARGELIST,
GETCOMPANYOPTIONS, GETCOMPANYOPTIONS,
GETDOCTORlISTNOPAGE, GETDOCTORlISTNOPAGE,
GETCHARGELISTDETAIL, GETCHARGELISTDETAIL,
GETRECEIPTPAYMENTDETAIL GETRECEIPTPAYMENTDETAIL,
QUERYCIRECEIPSENDLIST,
SAVERECEIPSENDINFO,
DELETERECEIPTSENDINFO,
}; };
...@@ -14,6 +14,11 @@ export default { ...@@ -14,6 +14,11 @@ export default {
path: "detail", path: "detail",
name: "chargeQueryDetail", name: "chargeQueryDetail",
component: () => import(/* webpackChunkName: "chargeQuery" */"@/views/charge-query/detail.vue") component: () => import(/* webpackChunkName: "chargeQuery" */"@/views/charge-query/detail.vue")
},
{
path: "lpjManage",
name: "chargeQueryLpjManage",
component: () => import(/* webpackChunkName: "chargeQuery" */"@/views/charge-query/lpjManage.vue")
} }
] ]
}; };
...@@ -53,6 +53,10 @@ export default [ ...@@ -53,6 +53,10 @@ export default [
path: "/charge-query", path: "/charge-query",
title: "账单查询", title: "账单查询",
}, },
{
path: "/charge-query/lpjManage",
title: "理赔件管理",
},
], ],
}, },
{ {
......
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