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
e68868e0
Commit
e68868e0
authored
Jan 11, 2022
by
huangyecong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【ECCS-商保-1213】账单查询接入接口
parent
fee6547b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
10 deletions
+17
-10
index.vue
src/views/charge-query/index.vue
+17
-10
No files found.
src/views/charge-query/index.vue
View file @
e68868e0
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
<!-- 收费查询-账单查询 -->
<!-- 收费查询-账单查询 -->
<div
class=
"white_bg burt-container custom-info"
>
<div
class=
"white_bg burt-container custom-info"
>
<!-- form -->
<!-- form -->
{{
form
}}
<a-form-model
ref=
"form"
layout=
"vertical"
:model=
"form"
>
<a-form-model
ref=
"form"
layout=
"vertical"
:model=
"form"
>
<a-row
:gutter=
"30"
>
<a-row
:gutter=
"30"
>
<a-col
:xl=
"4"
:lg=
"6"
:sm=
"12"
>
<a-col
:xl=
"4"
:lg=
"6"
:sm=
"12"
>
...
@@ -99,13 +98,13 @@
...
@@ -99,13 +98,13 @@
</a-form-model>
</a-form-model>
<!-- table -->
<!-- table -->
<!-- :customRow="handlerRowClick" -->
<a-table
<a-table
:columns=
"columns"
:columns=
"columns"
:data-source=
"dataList"
:data-source=
"dataList"
row-key=
"
patientNo
"
row-key=
"
id
"
:scroll=
"
{ x: true }"
:scroll=
"
{ x: true }"
:pagination="false"
:pagination="false"
:customRow="handlerRowClick"
>
>
<template
slot=
"operation"
slot-scope=
"record"
>
<template
slot=
"operation"
slot-scope=
"record"
>
<a-button
<a-button
...
@@ -140,8 +139,13 @@ export default {
...
@@ -140,8 +139,13 @@ export default {
const
columns
=
[
const
columns
=
[
{
{
title
:
"
序号
"
,
title
:
"
序号
"
,
dataIndex
:
"
id
"
,
dataIndex
:
"
index
"
,
width
:
120
,
key
:
"
index
"
,
align
:
'
center
'
,
width
:
80
,
customRender
:
(
text
,
record
,
index
)
=>
{
return
`
${
index
+
1
}
`
},
},
},
{
title
:
"
收费时间
"
,
dataIndex
:
"
receiptDate
"
,
width
:
180
},
{
title
:
"
收费时间
"
,
dataIndex
:
"
receiptDate
"
,
width
:
180
},
{
{
...
@@ -170,11 +174,11 @@ export default {
...
@@ -170,11 +174,11 @@ export default {
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
width
:
180
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
width
:
180
},
{
title
:
"
就诊时间
"
,
dataIndex
:
"
visitTime
"
,
width
:
180
},
{
title
:
"
就诊时间
"
,
dataIndex
:
"
visitTime
"
,
width
:
180
},
{
title
:
"
就诊医生
"
,
dataIndex
:
"
doctorName
"
,
width
:
180
},
{
title
:
"
就诊医生
"
,
dataIndex
:
"
doctorName
"
,
width
:
180
},
{
title
:
"
账单金额
"
,
dataIndex
:
"
actuala
mount
"
,
width
:
180
},
{
title
:
"
账单金额
"
,
dataIndex
:
"
chargeA
mount
"
,
width
:
180
},
{
title
:
"
折扣(%)
"
,
dataIndex
:
"
discountAmount
"
,
width
:
180
},
{
title
:
"
折扣(%)
"
,
dataIndex
:
"
discountAmount
"
,
width
:
180
},
{
title
:
"
折后金额
"
,
dataIndex
:
"
discounta
mount
"
,
width
:
180
},
{
title
:
"
折后金额
"
,
dataIndex
:
"
actualA
mount
"
,
width
:
180
},
{
title
:
"
客户自付
"
,
dataIndex
:
"
chargea
mount
"
,
width
:
180
},
{
title
:
"
客户自付
"
,
dataIndex
:
"
paidA
mount
"
,
width
:
180
},
{
title
:
"
减免金额
"
,
dataIndex
:
"
reduceamount
"
,
width
:
180
},
{
title
:
"
减免金额
"
,
dataIndex
:
"
reduceamount
"
,
width
:
180
},
{
title
:
"
理赔金额
"
,
dataIndex
:
"
paidamount
"
,
width
:
180
},
{
title
:
"
理赔金额
"
,
dataIndex
:
"
paidamount
"
,
width
:
180
},
{
title
:
"
保险已支付
"
,
dataIndex
:
"
insurancePaidAmount
"
,
width
:
180
},
{
title
:
"
保险已支付
"
,
dataIndex
:
"
insurancePaidAmount
"
,
width
:
180
},
...
@@ -262,10 +266,12 @@ export default {
...
@@ -262,10 +266,12 @@ export default {
onSelectVisitTime
(
date
,
dateString
)
{
onSelectVisitTime
(
date
,
dateString
)
{
console
.
log
(
date
,
dateString
);
console
.
log
(
date
,
dateString
);
},
},
// 重置
handlerReset
()
{
handlerReset
()
{
console
.
log
(
"
重置
"
);
this
.
form
=
{}
},
},
//设置行属性
handlerRowClick
(
record
)
{
handlerRowClick
(
record
)
{
const
{
id
,
patientPolicyId
}
=
record
;
const
{
id
,
patientPolicyId
}
=
record
;
return
{
return
{
...
@@ -273,6 +279,7 @@ export default {
...
@@ -273,6 +279,7 @@ export default {
color
:
record
.
isEdit
?
"
#2B63FF
"
:
"
#252631
"
,
color
:
record
.
isEdit
?
"
#2B63FF
"
:
"
#252631
"
,
},
},
on
:
{
on
:
{
// 点击行
click
:
()
=>
{
click
:
()
=>
{
if
(
record
.
isEdit
)
{
if
(
record
.
isEdit
)
{
return
true
;
return
true
;
...
...
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