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
0112ae82
Commit
0112ae82
authored
May 11, 2023
by
郭小龙-DEL
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'func-eccs-2045' into 'master'
eccs 2045 商保流程改造 See merge request
!33
parents
f40113a3
1ec29531
Changes
9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1000 additions
and
810 deletions
+1000
-810
verification.js
src/api/apis_moudles/verification.js
+19
-15
verification.js
src/api/funcs_modules/verification.js
+85
-68
menu.js
src/router/modules/menu.js
+30
-34
index.vue
src/views/charge-query/index.vue
+2
-3
lpjManageDetail.vue
src/views/charge-query/lpjManageDetail.vue
+5
-3
index.vue
src/views/customer/info/index.vue
+1
-2
index.vue
src/views/pre-auth/index.vue
+2
-2
collection.vue
src/views/verification/collection.vue
+318
-190
collectionDetail.vue
src/views/verification/collectionDetail.vue
+538
-493
No files found.
src/api/apis_moudles/verification.js
View file @
0112ae82
...
@@ -12,4 +12,8 @@ export default {
...
@@ -12,4 +12,8 @@ export default {
saveBackMoney
:
"
/backstage/auth/saveBackMoney
"
,
//新建回款
saveBackMoney
:
"
/backstage/auth/saveBackMoney
"
,
//新建回款
deleteBackMoney
:
"
/backstage/auth/deleteBackMoney
"
,
//删除回款
deleteBackMoney
:
"
/backstage/auth/deleteBackMoney
"
,
//删除回款
eobReceipListExport
:
"
/backstage/auth/eobReceipListExport
"
,
//EOB关联账单导出
eobReceipListExport
:
"
/backstage/auth/eobReceipListExport
"
,
//EOB关联账单导出
queryBackReceiptList
:
"
/backstage/auth/queryBackReceiptList
"
,
//回销关联账单列表查询
queryReceiptInfoList
:
"
/backstage/auth/queryReceiptInfoList
"
,
//回销账单列表查询
deleteReceiptRecord
:
"
/backstage/auth/deleteBackReceipt
"
,
// 删除已关联账单
};
};
src/api/funcs_modules/verification.js
View file @
0112ae82
...
@@ -53,6 +53,20 @@ const EOBRECEIPLISTEXPORT = (data={}) => {
...
@@ -53,6 +53,20 @@ const EOBRECEIPLISTEXPORT = (data={}) => {
return
req
.
post
(
apis
.
eobReceipListExport
,
data
,
{
responseType
:
"
blob
"
});
return
req
.
post
(
apis
.
eobReceipListExport
,
data
,
{
responseType
:
"
blob
"
});
};
};
//回销关联账单列表查询
const
QUERYBACKRECEIPTLIST
=
(
data
)
=>
{
return
req
.
post
(
apis
.
queryBackReceiptList
,
data
);
};
//回销账单列表查询
const
QUERYBACKRECEIPTINFOLIST
=
(
data
)
=>
{
return
req
.
post
(
apis
.
queryReceiptInfoList
,
data
);
};
// 删除已关联账单
const
DELETERECEIPTRECORD
=
(
data
)
=>
{
return
req
.
post
(
apis
.
deleteReceiptRecord
,
data
);
};
// 对象数组
// 对象数组
export
default
{
export
default
{
QUERYEOBLIST
,
QUERYEOBLIST
,
...
@@ -66,4 +80,7 @@ export default {
...
@@ -66,4 +80,7 @@ export default {
SAVEBACKMONEY
,
SAVEBACKMONEY
,
DELETEBACKMONEY
,
DELETEBACKMONEY
,
EOBRECEIPLISTEXPORT
,
EOBRECEIPLISTEXPORT
,
QUERYBACKRECEIPTLIST
,
QUERYBACKRECEIPTINFOLIST
,
DELETERECEIPTRECORD
};
};
\ No newline at end of file
src/router/modules/menu.js
View file @
0112ae82
...
@@ -14,38 +14,34 @@ export default [
...
@@ -14,38 +14,34 @@ export default [
path
:
"
/customer
"
,
path
:
"
/customer
"
,
title
:
"
客户查询
"
,
title
:
"
客户查询
"
,
},
},
{
path
:
"
/customer/edit
"
,
title
:
"
新建客户
"
,
},
],
},
{
icon
:
"
ssimanage_msg
"
,
path
:
"
2
"
,
title
:
"
福利信息管理
"
,
children
:
[
{
path
:
"
/welfare
"
,
title
:
"
福利查询
"
,
}
],
},
{
icon
:
"
ssimanage
"
,
path
:
"
pre-auth
"
,
title
:
"
预授权信息管理
"
,
children
:
[
{
path
:
"
/pre-auth
"
,
title
:
"
预授权查询
"
,
},
{
path
:
"
/pre-auth/add
"
,
title
:
"
新建预授权
"
,
},
],
],
},
},
// {
// icon: "ssimanage_msg",
// path: "2",
// title: "福利信息管理",
// children: [
// {
// path: "/welfare",
// title: "福利查询",
// }
// ],
// },
// {
// icon: "ssimanage",
// path: "pre-auth",
// title: "预授权信息管理",
// children: [
// {
// path: "/pre-auth",
// title: "预授权查询",
// },
// // {
// // path: "/pre-auth/add",
// // title: "新建预授权",
// // },
// ],
// },
{
{
icon
:
"
ssisearch
"
,
icon
:
"
ssisearch
"
,
path
:
"
charge-query
"
,
path
:
"
charge-query
"
,
...
@@ -66,10 +62,10 @@ export default [
...
@@ -66,10 +62,10 @@ export default [
path
:
"
verification
"
,
path
:
"
verification
"
,
title
:
"
核销管理
"
,
title
:
"
核销管理
"
,
children
:
[
children
:
[
{
//
{
path
:
"
/verification
"
,
//
path: "/verification",
title
:
"
EOB管理
"
,
//
title: "EOB管理",
},
//
},
{
{
path
:
"
/verification/collection
"
,
path
:
"
/verification/collection
"
,
title
:
"
回款管理
"
,
title
:
"
回款管理
"
,
...
...
src/views/charge-query/index.vue
View file @
0112ae82
...
@@ -150,8 +150,8 @@ export default {
...
@@ -150,8 +150,8 @@ export default {
{
title
:
"
病历号
"
,
dataIndex
:
"
mrnNo
"
,
width
:
180
},
{
title
:
"
病历号
"
,
dataIndex
:
"
mrnNo
"
,
width
:
180
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
width
:
120
,},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
width
:
120
,},
{
title
:
"
客户类型
"
,
dataIndex
:
"
patientType
"
,
width
:
180
},
{
title
:
"
客户类型
"
,
dataIndex
:
"
patientType
"
,
width
:
180
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
width
:
18
0
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
width
:
20
0
},
{
title
:
"
就诊医生
"
,
dataIndex
:
"
doctorName
"
,
width
:
1
8
0
},
{
title
:
"
就诊医生
"
,
dataIndex
:
"
doctorName
"
,
width
:
1
5
0
},
{
title
:
"
是否已关联寄送单
"
,
dataIndex
:
"
isSend
"
,
width
:
180
,
scopedSlots
:
{
customRender
:
"
isSend
"
}
},
{
title
:
"
是否已关联寄送单
"
,
dataIndex
:
"
isSend
"
,
width
:
180
,
scopedSlots
:
{
customRender
:
"
isSend
"
}
},
{
title
:
"
是否已关联EOB
"
,
dataIndex
:
"
isEob
"
,
width
:
180
,
scopedSlots
:
{
customRender
:
"
isEob
"
}
},
{
title
:
"
是否已关联EOB
"
,
dataIndex
:
"
isEob
"
,
width
:
180
,
scopedSlots
:
{
customRender
:
"
isEob
"
}
},
{
title
:
"
是否已回款
"
,
dataIndex
:
"
isEobBack
"
,
width
:
180
,
scopedSlots
:
{
customRender
:
"
isEobBack
"
}
},
{
title
:
"
是否已回款
"
,
dataIndex
:
"
isEobBack
"
,
width
:
180
,
scopedSlots
:
{
customRender
:
"
isEobBack
"
}
},
...
@@ -211,7 +211,6 @@ export default {
...
@@ -211,7 +211,6 @@ export default {
})
})
},
},
created
()
{
created
()
{
this
.
_getChargeList
();
this
.
_getCompanyOptions
();
this
.
_getCompanyOptions
();
this
.
_getDoctorListNoPage
();
//获取医生下拉选项
this
.
_getDoctorListNoPage
();
//获取医生下拉选项
},
},
...
...
src/views/charge-query/lpjManageDetail.vue
View file @
0112ae82
...
@@ -229,11 +229,13 @@ export default {
...
@@ -229,11 +229,13 @@ export default {
computed
:
{
computed
:
{
columns
()
{
columns
()
{
const
base
=
[
const
base
=
[
{
title
:
"
就诊日期
"
,
dataIndex
:
"
receiptDate
"
,
width
:
20
0
,
scopedSlots
:
{
customRender
:
"
receiptDate
"
}
},
{
title
:
"
就诊日期
"
,
dataIndex
:
"
receiptDate
"
,
width
:
16
0
,
scopedSlots
:
{
customRender
:
"
receiptDate
"
}
},
{
title
:
"
病历号
"
,
dataIndex
:
"
mrnNo
"
,
key
:
"
mrnNo
"
,
align
:
'
center
'
,
width
:
136
},
{
title
:
"
病历号
"
,
dataIndex
:
"
mrnNo
"
,
key
:
"
mrnNo
"
,
align
:
'
center
'
,
width
:
136
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
width
:
98
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
width
:
160
},
{
title
:
"
保险卡号
"
,
dataIndex
:
"
memberCardNo
"
,
width
:
180
},
{
title
:
"
客户生日
"
,
dataIndex
:
"
birthday
"
,
width
:
160
},
{
title
:
"
账单编号
"
,
dataIndex
:
"
receiptNo
"
,
key
:
"
receiptNo
"
,
align
:
'
center
'
,
width
:
136
},
{
title
:
"
账单编号
"
,
dataIndex
:
"
receiptNo
"
,
key
:
"
receiptNo
"
,
align
:
'
center
'
,
width
:
136
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
width
:
11
0
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
ellipsis
:
true
,
width
:
25
0
},
{
title
:
"
应收金额
"
,
dataIndex
:
"
chargeAmount
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
应收金额
"
,
dataIndex
:
"
chargeAmount
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
折扣金额
"
,
dataIndex
:
"
discountAmount
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
折扣金额
"
,
dataIndex
:
"
discountAmount
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
减免金额
"
,
dataIndex
:
"
discountAmount2
"
,
width
:
100
,
align
:
'
center
'
},
{
title
:
"
减免金额
"
,
dataIndex
:
"
discountAmount2
"
,
width
:
100
,
align
:
'
center
'
},
...
...
src/views/customer/info/index.vue
View file @
0112ae82
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
</a-col>
</a-col>
<a-col
:xl=
"18"
:lg=
"18"
:sm=
"12"
class=
"none-label"
>
<a-col
:xl=
"18"
:lg=
"18"
:sm=
"12"
class=
"none-label"
>
<a-form-model-item
label=
"button"
>
<a-form-model-item
label=
"button"
>
<
a-button
type=
"primary"
@
click=
"addNewCustom"
><Icon
name=
"ssiadd"
:size=
"14"
/>
新建客户
</a-button
>
<
!--
<a-button
type=
"primary"
@
click=
"addNewCustom"
><Icon
name=
"ssiadd"
:size=
"14"
/>
新建客户
</a-button>
--
>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"handlerSearch"
>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"handlerSearch"
>
<Icon
name=
"ssisearch_active"
:size=
"14"
/>
查询
<Icon
name=
"ssisearch_active"
:size=
"14"
/>
查询
</a-button>
</a-button>
...
@@ -121,7 +121,6 @@ export default {
...
@@ -121,7 +121,6 @@ export default {
BurtPagination
,
BurtPagination
,
},
},
created
()
{
created
()
{
this
.
_getCustomerList
();
this
.
_getPayorCode
();
this
.
_getPayorCode
();
},
},
methods
:
{
methods
:
{
...
...
src/views/pre-auth/index.vue
View file @
0112ae82
...
@@ -54,8 +54,8 @@
...
@@ -54,8 +54,8 @@
<a-button
class=
"mar-left5"
type=
"primary"
@
click=
"reset"
>
<a-button
class=
"mar-left5"
type=
"primary"
@
click=
"reset"
>
<Icon
name=
"ssireset"
:size=
"12"
/>
重置
<Icon
name=
"ssireset"
:size=
"12"
/>
重置
</a-button>
</a-button>
<a-button
class=
"mar-left5"
type=
"primary"
@
click=
"addPreAuth"
>
<
!--
<
a-button
class=
"mar-left5"
type=
"primary"
@
click=
"addPreAuth"
>
<Icon
name=
"ssiadd"
:size=
"12"
/>
新建预授权
</a-button>
<Icon
name=
"ssiadd"
:size=
"12"
/>
新建预授权
</a-button>
-->
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
</a-row>
</a-row>
...
...
src/views/verification/collection.vue
View file @
0112ae82
This diff is collapsed.
Click to expand it.
src/views/verification/collectionDetail.vue
View file @
0112ae82
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