Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bims
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙海亮
bims
Commits
55706eab
Commit
55706eab
authored
Feb 10, 2022
by
yanglilong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'yanglilong' of git.ssish.com:sunhailiang/bims into test
parents
9a4e2c0b
7bec9043
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
425 additions
and
1 deletion
+425
-1
charge-query.js
src/api/apis_moudles/charge-query.js
+3
-0
charge-query.js
src/api/funcs_modules/charge-query.js
+16
-1
charge-query.js
src/router/modules/charge-query.js
+5
-0
menu.js
src/router/modules/menu.js
+4
-0
lpjManage.vue
src/views/charge-query/lpjManage.vue
+397
-0
No files found.
src/api/apis_moudles/charge-query.js
View file @
55706eab
...
...
@@ -5,4 +5,7 @@ export default {
getDoctorListNoPage
:
"
/backstage/auth/doctorListNoPage
"
,
//医生列表
getChargeListDetail
:
"
/backstage/auth/receiptDetailList
"
,
//账单明细
getReceiptPaymentDetail
:
"
/backstage/auth/receiptPaymentDetail
"
,
//账单明细
queryCiReceipSendList
:
"
/backstage/auth/queryCiReceipSendList
"
,
//理赔件账单寄送查询
saveReceipSendInfo
:
"
/backstage/auth/saveReceipSendInfo
"
,
//保存理赔件账单寄送信息
deleteReceiptSendInfo
:
"
/backstage/auth/deleteReceiptSendInfo
"
,
//删除寄送信息
};
src/api/funcs_modules/charge-query.js
View file @
55706eab
...
...
@@ -21,11 +21,26 @@ const GETCHARGELISTDETAIL = function (data) {
const
GETRECEIPTPAYMENTDETAIL
=
function
(
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
{
GETCHARGELIST
,
GETCOMPANYOPTIONS
,
GETDOCTORlISTNOPAGE
,
GETCHARGELISTDETAIL
,
GETRECEIPTPAYMENTDETAIL
GETRECEIPTPAYMENTDETAIL
,
QUERYCIRECEIPSENDLIST
,
SAVERECEIPSENDINFO
,
DELETERECEIPTSENDINFO
,
};
src/router/modules/charge-query.js
View file @
55706eab
...
...
@@ -14,6 +14,11 @@ export default {
path
:
"
detail
"
,
name
:
"
chargeQueryDetail
"
,
component
:
()
=>
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query/detail.vue
"
)
},
{
path
:
"
lpjManage
"
,
name
:
"
chargeQueryLpjManage
"
,
component
:
()
=>
import
(
/* webpackChunkName: "chargeQuery" */
"
@/views/charge-query/lpjManage.vue
"
)
}
]
};
src/router/modules/menu.js
View file @
55706eab
...
...
@@ -53,6 +53,10 @@ export default [
path
:
"
/charge-query
"
,
title
:
"
账单查询
"
,
},
{
path
:
"
/charge-query/lpjManage
"
,
title
:
"
理赔件管理
"
,
},
],
},
{
...
...
src/views/charge-query/lpjManage.vue
0 → 100644
View file @
55706eab
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment