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
55f58ab1
Commit
55f58ab1
authored
Feb 21, 2023
by
郭小龙-DEL
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'test' of
http://git.ssish.com/sunhailiang/bims
into test
parents
5f9c7148
918ba4c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
17 deletions
+48
-17
indexDetail.vue
src/views/verification/indexDetail.vue
+48
-17
No files found.
src/views/verification/indexDetail.vue
View file @
55f58ab1
...
@@ -78,20 +78,36 @@
...
@@ -78,20 +78,36 @@
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
</a-row>
</a-row>
<a-row
:gutter=
"30"
>
</a-form-model>
<a-col
:md=
"24"
class=
"none-label"
>
<a-form-model
ref=
"form"
layout=
"vertical"
:model=
"searchForm"
>
<a-form-model-item
label=
"button"
>
<a-row
:gutter=
"30"
>
<!--
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"handlerSearch"
>
<a-col
:lg=
"8"
:sm=
"12"
>
<Icon
name=
"ssisearch_active"
:size=
"14"
/>
查询
<a-form-model-item
label=
"就诊日期"
>
</a-button>
-->
<a-range-picker
format=
"YYYY-MM-DD"
value-format=
"YYYY-MM-DD"
v-model=
"searchForm.visitTimeStart"
:placeholder=
"['选择就诊开始日期', '选择就诊结束日期']"
/>
<a-button
type=
"primary"
@
click=
"exportEvt"
>
</a-form-model-item>
<Icon
name=
"ssidaochu"
:size=
"14"
/>
导出
</a-col>
</a-button>
<a-col
:lg=
"8"
:sm=
"12"
>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"addNewBill"
v-if=
"isEdit"
>
<a-form-model-item
label=
"病历号"
>
<Icon
:name=
"isEditNewEob?'ssibaocun':'ssiadd'"
:size=
"14"
/>
{{
isEditNewEob
?
'
保存账单
'
:
'
添加账单
'
}}
</a-button>
<a-input
v-model=
"searchForm.mrnNo"
placeholder=
"请输入病历号"
allow-clear
/>
</a-form-model-item>
</a-form-model-item>
</a-col>
</a-col>
</a-row>
<a-col
:lg=
"8"
:sm=
"12"
>
<a-form-model-item
label=
"客户名称"
>
<a-input
v-model=
"searchForm.patientName"
placeholder=
"请输入客户名称"
allow-clear
/>
</a-form-model-item>
</a-col>
</a-row>
<div
class=
"btn-div mar-bottom10 none-label"
>
<a-button
type=
"primary"
@
click=
"handlerSearch"
>
<Icon
name=
"ssisearch_active"
:size=
"14"
/>
查询
</a-button>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"exportEvt"
>
<Icon
name=
"ssidaochu"
:size=
"14"
/>
导出
</a-button>
<a-button
class=
"mar-left10"
type=
"primary"
@
click=
"addNewBill"
v-if=
"isEdit"
>
<Icon
:name=
"isEditNewEob?'ssibaocun':'ssiadd'"
:size=
"14"
/>
{{
isEditNewEob
?
'
保存账单
'
:
'
添加账单
'
}}
</a-button>
</div>
</a-form-model>
</a-form-model>
<!-- table -->
<!-- table -->
<a-table
:columns=
"columns"
:data-source=
"dataList"
:scroll=
"
{ x: true }" :pagination="false"
<a-table
:columns=
"columns"
:data-source=
"dataList"
:scroll=
"
{ x: true }" :pagination="false"
...
@@ -183,6 +199,7 @@ export default {
...
@@ -183,6 +199,7 @@ export default {
editRules
:
{
editRules
:
{
},
},
searchForm
:{}
};
};
},
},
mixins
:
[
mixins
],
mixins
:
[
mixins
],
...
@@ -257,7 +274,16 @@ export default {
...
@@ -257,7 +274,16 @@ export default {
},
},
handlerSearch
()
{
handlerSearch
()
{
this
.
pagination
.
pageNum
=
1
;
this
.
pagination
.
pageNum
=
1
;
this
.
isEditNewEob
=
false
;
let
visitTimeStart
=
this
.
searchForm
.
visitTimeStart
||
[]
this
.
searchData
=
this
.
$lodash
.
cloneDeep
({
...
this
.
searchForm
,
visitTimeEnd
:
visitTimeStart
[
1
]
?
visitTimeStart
[
1
]
+
'
23:59:59
'
:
undefined
,
visitTimeStart
:
visitTimeStart
[
0
]
?
visitTimeStart
[
0
]
+
'
00:00:00
'
:
undefined
,
});
if
(
this
.
isEditNewEob
)
{
// 点击添加EOB之后 分页数据查询就应该调EOB数据
this
.
_getNewEOBList
()
return
true
;
}
this
.
getData
();
this
.
getData
();
},
},
//回款金额改变
//回款金额改变
...
@@ -286,7 +312,8 @@ export default {
...
@@ -286,7 +312,8 @@ export default {
this
.
$apis
.
QUERYEOBRECEIPTLIST
({
this
.
$apis
.
QUERYEOBRECEIPTLIST
({
pageNum
:
this
.
pagination
.
pageNum
,
pageNum
:
this
.
pagination
.
pageNum
,
pageSize
:
this
.
pagination
.
pageSize
,
pageSize
:
this
.
pagination
.
pageSize
,
eobNo
:
this
.
eobNo
eobNo
:
this
.
eobNo
,
...
this
.
searchData
})
})
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
if
(
res
.
returnCode
==
"
0000
"
)
{
if
(
res
.
returnCode
==
"
0000
"
)
{
...
@@ -394,7 +421,8 @@ export default {
...
@@ -394,7 +421,8 @@ export default {
this
.
$apis
.
QUERYEOBNEEDRECEIPTLIST
({
this
.
$apis
.
QUERYEOBNEEDRECEIPTLIST
({
payorCode
:
this
.
form
.
payorCode
,
payorCode
:
this
.
form
.
payorCode
,
pageNum
:
this
.
pagination
.
pageNum
,
pageNum
:
this
.
pagination
.
pageNum
,
pageSize
:
this
.
pagination
.
pageSize
pageSize
:
this
.
pagination
.
pageSize
,
...
this
.
searchData
})
})
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
if
(
res
.
returnCode
==
"
0000
"
)
{
if
(
res
.
returnCode
==
"
0000
"
)
{
...
@@ -481,6 +509,9 @@ export default {
...
@@ -481,6 +509,9 @@ export default {
.ant-form-item-label {
.ant-form-item-label {
opacity: 0;
opacity: 0;
}
}
}
.btn-div{
}
}
.ant-btn .icon-class {
.ant-btn .icon-class {
.mg-r(10);
.mg-r(10);
...
...
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