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
7db6fab2
Commit
7db6fab2
authored
Mar 14, 2024
by
朱彩云
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'func_eccs_2803' into test
parents
a197df19
99294735
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
817 additions
and
487 deletions
+817
-487
index.vue
src/views/charge-query/index.vue
+535
-382
lpjManage.vue
src/views/charge-query/lpjManage.vue
+200
-97
lpjManageDetail.vue
src/views/charge-query/lpjManageDetail.vue
+23
-0
collectionDetail.vue
src/views/verification/collectionDetail.vue
+59
-8
No files found.
src/views/charge-query/index.vue
View file @
7db6fab2
This diff is collapsed.
Click to expand it.
src/views/charge-query/lpjManage.vue
View file @
7db6fab2
This diff is collapsed.
Click to expand it.
src/views/charge-query/lpjManageDetail.vue
View file @
7db6fab2
...
@@ -196,6 +196,16 @@
...
@@ -196,6 +196,16 @@
</a-select>
</a-select>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
<a-col
:lg=
"8"
:sm=
"12"
>
<a-form-model-item
label=
"就诊日期"
>
<a-range-picker
format=
"YYYY-MM-DD"
value-format=
"YYYY-MM-DD"
v-model=
"searchForm.admissionDateStart"
:placeholder=
"['选择开始日期', '选择结束日期']"
/>
</a-form-model-item>
</a-col>
</a-row>
</a-row>
<a-row
:gutter=
"30"
>
<a-row
:gutter=
"30"
>
<a-col
:sm=
"24"
class=
"none-label"
>
<a-col
:sm=
"24"
class=
"none-label"
>
...
@@ -468,6 +478,12 @@ export default {
...
@@ -468,6 +478,12 @@ export default {
fixed
:
'
left
'
,
fixed
:
'
left
'
,
width
:
120
width
:
120
},
},
{
title
:
'
就诊日期
'
,
dataIndex
:
'
admissionDate
'
,
fixed
:
'
left
'
,
width
:
120
},
{
{
title
:
'
病历号
'
,
title
:
'
病历号
'
,
dataIndex
:
'
mrnNo
'
,
dataIndex
:
'
mrnNo
'
,
...
@@ -732,8 +748,15 @@ export default {
...
@@ -732,8 +748,15 @@ export default {
handlerSearch
()
{
handlerSearch
()
{
this
.
pagination
.
pageNum
=
1
this
.
pagination
.
pageNum
=
1
let
visitTimeStart
=
this
.
searchForm
.
visitTimeStart
||
[]
let
visitTimeStart
=
this
.
searchForm
.
visitTimeStart
||
[]
let
admissionDateStart
=
this
.
searchForm
.
admissionDateStart
||
[]
this
.
searchData
=
this
.
$lodash
.
cloneDeep
({
this
.
searchData
=
this
.
$lodash
.
cloneDeep
({
...
this
.
searchForm
,
...
this
.
searchForm
,
admissionDateStart
:
admissionDateStart
[
0
]
?
admissionDateStart
[
0
]
+
'
00:00:00
'
:
undefined
,
admissionDateEnd
:
admissionDateStart
[
0
]
?
admissionDateStart
[
0
]
+
'
23:59:59
'
:
undefined
,
visitTimeEnd
:
visitTimeStart
[
1
]
visitTimeEnd
:
visitTimeStart
[
1
]
?
visitTimeStart
[
1
]
+
'
23:59:59
'
?
visitTimeStart
[
1
]
+
'
23:59:59
'
:
undefined
,
:
undefined
,
...
...
src/views/verification/collectionDetail.vue
View file @
7db6fab2
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
allow-clear
allow-clear
show-search
show-search
:disabled=
"!isEdit"
:disabled=
"!isEdit"
style=
"
min-width: 200px; max-width: 25
0px"
style=
"
width: 20
0px"
@
change=
"changePayor"
@
change=
"changePayor"
:filterOption=
"filterCode"
:filterOption=
"filterCode"
>
>
...
@@ -133,8 +133,9 @@
...
@@ -133,8 +133,9 @@
placeholder=
"请选择保险公司"
placeholder=
"请选择保险公司"
allow-clear
allow-clear
show-search
show-search
:dropdownMatchSelectWidth=
"false"
:disabled=
"!isEdit"
:disabled=
"!isEdit"
style=
"
min-
width: 200px"
style=
"width: 200px"
@
change=
"changePayor"
@
change=
"changePayor"
:filterOption=
"filterCode"
:filterOption=
"filterCode"
>
>
...
@@ -283,13 +284,23 @@
...
@@ -283,13 +284,23 @@
/>
/>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
v-if=
"activeKey1 === '1'"
>
<a-form-model-item
label=
"就诊日期"
>
<a-range-picker
format=
"YYYY-MM-DD"
value-format=
"YYYY-MM-DD"
v-model=
"searchForm.admissionDateStart"
:placeholder=
"['选择开始日期', '选择结束日期']"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"6"
:sm=
"12"
v-if=
"activeKey1 === '1'"
>
<a-col
:lg=
"6"
:sm=
"12"
v-if=
"activeKey1 === '1'"
>
<a-form-model-item
label=
""
class=
"mar_l40"
>
<a-form-model-item
label=
""
class=
"mar_l40"
>
<a-checkbox
<a-checkbox
:checked=
"searchForm.hasBack == 'Y'"
:checked=
"searchForm.hasBack == 'Y'"
@
change=
"($event) => changeHasBack($event)"
@
change=
"($event) => changeHasBack($event)"
/>
/>
<span
class=
"lable"
>
是否
已回款
</span>
<span
class=
"lable"
>
已回款
</span>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
<a-col
class=
"flex-col"
:lg=
"4"
:sm=
"12"
>
<a-col
class=
"flex-col"
:lg=
"4"
:sm=
"12"
>
...
@@ -540,6 +551,12 @@ export default {
...
@@ -540,6 +551,12 @@ export default {
width
:
180
,
width
:
180
,
scopedSlots
:
{
customRender
:
'
patientName
'
}
scopedSlots
:
{
customRender
:
'
patientName
'
}
},
},
{
title
:
'
就诊日期
'
,
dataIndex
:
'
admissionDate
'
,
ellipsis
:
true
,
width
:
160
},
{
title
:
'
病历号
'
,
dataIndex
:
'
mrnNo
'
,
ellipsis
:
true
,
width
:
195
},
{
title
:
'
病历号
'
,
dataIndex
:
'
mrnNo
'
,
ellipsis
:
true
,
width
:
195
},
{
{
title
:
'
保险公司
'
,
title
:
'
保险公司
'
,
...
@@ -741,6 +758,7 @@ export default {
...
@@ -741,6 +758,7 @@ export default {
patientName
:
''
,
// 客户名字
patientName
:
''
,
// 客户名字
hasBack
:
'
N
'
hasBack
:
'
N
'
}
}
this
.
searchData
()
}
}
},
},
created
()
{
created
()
{
...
@@ -807,8 +825,8 @@ export default {
...
@@ -807,8 +825,8 @@ export default {
const
paddingT
=
parseFloat
(
style
.
getPropertyValue
(
'
padding-top
'
))
const
paddingT
=
parseFloat
(
style
.
getPropertyValue
(
'
padding-top
'
))
const
paddingB
=
parseFloat
(
style
.
getPropertyValue
(
'
padding-bottom
'
))
const
paddingB
=
parseFloat
(
style
.
getPropertyValue
(
'
padding-bottom
'
))
const
paddingSum
=
paddingT
+
paddingB
const
paddingSum
=
paddingT
+
paddingB
this
.
tableHeight
=
containterH
-
3
0
0
-
gobackH
-
paddingSum
this
.
tableHeight
=
containterH
-
3
8
0
-
gobackH
-
paddingSum
this
.
tableHeight1
=
containterH
-
34
0
-
gobackH
-
paddingSum
this
.
tableHeight1
=
containterH
-
42
0
-
gobackH
-
paddingSum
// 设置每页展示条数
// 设置每页展示条数
const
pageSize
=
Math
.
floor
((
this
.
tableHeight1
-
10
)
/
32
)
const
pageSize
=
Math
.
floor
((
this
.
tableHeight1
-
10
)
/
32
)
this
.
$set
(
this
.
pagination
,
'
pageSize
'
,
pageSize
)
this
.
$set
(
this
.
pagination
,
'
pageSize
'
,
pageSize
)
...
@@ -901,6 +919,7 @@ export default {
...
@@ -901,6 +919,7 @@ export default {
// 全选
// 全选
selectAllList
()
{
selectAllList
()
{
let
billDate
=
this
.
searchForm
.
billDate
||
[]
let
billDate
=
this
.
searchForm
.
billDate
||
[]
let
admissionDateStart
=
this
.
searchForm
.
admissionDateStart
||
[]
this
.
$apis
this
.
$apis
.
queryReceiptInfoList
({
.
queryReceiptInfoList
({
pageNum
:
1
,
pageNum
:
1
,
...
@@ -909,7 +928,13 @@ export default {
...
@@ -909,7 +928,13 @@ export default {
payorCode
:
this
.
form
.
payorCode
,
payorCode
:
this
.
form
.
payorCode
,
...
this
.
searchForm
,
...
this
.
searchForm
,
receiptEndDate
:
billDate
[
1
]
?
billDate
[
1
]
+
'
23:59:59
'
:
undefined
,
receiptEndDate
:
billDate
[
1
]
?
billDate
[
1
]
+
'
23:59:59
'
:
undefined
,
receiptStartDate
:
billDate
[
0
]
?
billDate
[
0
]
+
'
00:00:00
'
:
undefined
receiptStartDate
:
billDate
[
0
]
?
billDate
[
0
]
+
'
00:00:00
'
:
undefined
,
admissionDateStart
:
admissionDateStart
[
0
]
?
admissionDateStart
[
0
]
+
'
00:00:00
'
:
undefined
,
admissionDateEnd
:
admissionDateStart
[
1
]
?
admissionDateStart
[
1
]
+
'
23:59:59
'
:
undefined
})
})
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
if
(
res
.
returnCode
==
'
0000
'
)
{
if
(
res
.
returnCode
==
'
0000
'
)
{
...
@@ -1007,6 +1032,7 @@ export default {
...
@@ -1007,6 +1032,7 @@ export default {
return
return
}
}
let
billDate
=
this
.
searchForm
.
billDate
||
[]
let
billDate
=
this
.
searchForm
.
billDate
||
[]
let
admissionDateStart
=
this
.
searchForm
.
admissionDateStart
||
[]
this
.
$apis
this
.
$apis
.
queryBackReceiptList
({
.
queryBackReceiptList
({
pageNum
:
1
,
pageNum
:
1
,
...
@@ -1014,7 +1040,13 @@ export default {
...
@@ -1014,7 +1040,13 @@ export default {
backMoneyNo
:
this
.
backMoneyNo
,
backMoneyNo
:
this
.
backMoneyNo
,
...
this
.
searchForm
,
...
this
.
searchForm
,
receiptEndDate
:
billDate
[
1
]
?
billDate
[
1
]
+
'
23:59:59
'
:
undefined
,
receiptEndDate
:
billDate
[
1
]
?
billDate
[
1
]
+
'
23:59:59
'
:
undefined
,
receiptStartDate
:
billDate
[
0
]
?
billDate
[
0
]
+
'
00:00:00
'
:
undefined
receiptStartDate
:
billDate
[
0
]
?
billDate
[
0
]
+
'
00:00:00
'
:
undefined
,
admissionDateStart
:
admissionDateStart
[
0
]
?
admissionDateStart
[
0
]
+
'
00:00:00
'
:
undefined
,
admissionDateEnd
:
admissionDateStart
[
1
]
?
admissionDateStart
[
1
]
+
'
23:59:59
'
:
undefined
})
})
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
if
(
res
.
returnCode
==
'
0000
'
)
{
if
(
res
.
returnCode
==
'
0000
'
)
{
...
@@ -1028,6 +1060,12 @@ export default {
...
@@ -1028,6 +1060,12 @@ export default {
:
undefined
,
:
undefined
,
receiptStartDate
:
billDate
[
0
]
receiptStartDate
:
billDate
[
0
]
?
billDate
[
0
]
+
'
00:00:00
'
?
billDate
[
0
]
+
'
00:00:00
'
:
undefined
,
admissionDateStart
:
admissionDateStart
[
0
]
?
admissionDateStart
[
0
]
+
'
00:00:00
'
:
undefined
,
admissionDateEnd
:
admissionDateStart
[
1
]
?
admissionDateStart
[
1
]
+
'
23:59:59
'
:
undefined
:
undefined
})
})
const
list
=
res
.
content
.
list
||
[]
const
list
=
res
.
content
.
list
||
[]
...
@@ -1047,6 +1085,7 @@ export default {
...
@@ -1047,6 +1085,7 @@ export default {
// 获取所有账单
// 获取所有账单
_getNewEOBList
()
{
_getNewEOBList
()
{
let
billDate
=
this
.
searchForm
.
billDate
||
[]
let
billDate
=
this
.
searchForm
.
billDate
||
[]
let
admissionDateStart
=
this
.
searchForm
.
admissionDateStart
||
[]
this
.
$apis
this
.
$apis
.
queryReceiptInfoList
({
.
queryReceiptInfoList
({
pageNum
:
this
.
pagination
.
pageNum
,
pageNum
:
this
.
pagination
.
pageNum
,
...
@@ -1055,7 +1094,13 @@ export default {
...
@@ -1055,7 +1094,13 @@ export default {
payorCode
:
this
.
form
.
payorCode
,
payorCode
:
this
.
form
.
payorCode
,
...
this
.
searchForm
,
...
this
.
searchForm
,
receiptEndDate
:
billDate
[
1
]
?
billDate
[
1
]
+
'
23:59:59
'
:
undefined
,
receiptEndDate
:
billDate
[
1
]
?
billDate
[
1
]
+
'
23:59:59
'
:
undefined
,
receiptStartDate
:
billDate
[
0
]
?
billDate
[
0
]
+
'
00:00:00
'
:
undefined
receiptStartDate
:
billDate
[
0
]
?
billDate
[
0
]
+
'
00:00:00
'
:
undefined
,
admissionDateStart
:
admissionDateStart
[
0
]
?
admissionDateStart
[
0
]
+
'
00:00:00
'
:
undefined
,
admissionDateEnd
:
admissionDateStart
[
1
]
?
admissionDateStart
[
1
]
+
'
23:59:59
'
:
undefined
})
})
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
if
(
res
.
returnCode
==
'
0000
'
)
{
if
(
res
.
returnCode
==
'
0000
'
)
{
...
@@ -1070,6 +1115,12 @@ export default {
...
@@ -1070,6 +1115,12 @@ export default {
:
undefined
,
:
undefined
,
receiptStartDate
:
billDate
[
0
]
receiptStartDate
:
billDate
[
0
]
?
billDate
[
0
]
+
'
00:00:00
'
?
billDate
[
0
]
+
'
00:00:00
'
:
undefined
,
admissionDateStart
:
admissionDateStart
[
0
]
?
admissionDateStart
[
0
]
+
'
00:00:00
'
:
undefined
,
admissionDateEnd
:
admissionDateStart
[
1
]
?
admissionDateStart
[
1
]
+
'
23:59:59
'
:
undefined
:
undefined
})
})
let
content
=
res
.
content
||
{}
let
content
=
res
.
content
||
{}
...
...
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