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
4a6b97f0
Commit
4a6b97f0
authored
2 years ago
by
WindyWTH
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ECCS-1820 ECCS-1826处理完成
parent
30456175
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
138 additions
and
76 deletions
+138
-76
charge-query.js
src/api/apis_moudles/charge-query.js
+1
-0
charge-query.js
src/api/funcs_modules/charge-query.js
+5
-0
index.vue
src/components/CUSTOMER/goback/index.vue
+1
-1
index.vue
src/views/charge-query/index.vue
+4
-2
lpjManageDetail.vue
src/views/charge-query/lpjManageDetail.vue
+103
-55
feeDetail.vue
src/views/pre-auth/components/feeDetail.vue
+1
-1
collectionDetail.vue
src/views/verification/collectionDetail.vue
+22
-12
indexDetail.vue
src/views/verification/indexDetail.vue
+1
-5
No files found.
src/api/apis_moudles/charge-query.js
View file @
4a6b97f0
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
export
default
{
export
default
{
querySendInfoList
:
"
/backstage/auth/querySendInfoList
"
,
//查询寄送列表
querySendInfoList
:
"
/backstage/auth/querySendInfoList
"
,
//查询寄送列表
deleteReceiptSendInfo
:
"
/backstage/auth/deleteReceiptSendInfo
"
,
//删除寄送信息
deleteReceiptSendInfo
:
"
/backstage/auth/deleteReceiptSendInfo
"
,
//删除寄送信息
deleteSendReceipt
:
"
/backstage/auth/deleteSendReceipt
"
,
//删除寄送信息下的账单信息
saveReceipSendInfo
:
"
/backstage/auth/saveReceipSendInfo
"
,
//保存理赔件账单寄送信息
saveReceipSendInfo
:
"
/backstage/auth/saveReceipSendInfo
"
,
//保存理赔件账单寄送信息
querySendReceipList
:
"
/backstage/auth/querySendReceipList
"
,
//查询寄送包含账单列表
querySendReceipList
:
"
/backstage/auth/querySendReceipList
"
,
//查询寄送包含账单列表
queryNoSendReceipList
:
"
/backstage/auth/queryNoSendReceipList
"
,
//待寄送账单查询
queryNoSendReceipList
:
"
/backstage/auth/queryNoSendReceipList
"
,
//待寄送账单查询
...
...
This diff is collapsed.
Click to expand it.
src/api/funcs_modules/charge-query.js
View file @
4a6b97f0
...
@@ -9,6 +9,10 @@ const QUERYSENDINFOLIST = function (data) {
...
@@ -9,6 +9,10 @@ const QUERYSENDINFOLIST = function (data) {
const
DELETERECEIPTSENDINFO
=
function
(
data
)
{
const
DELETERECEIPTSENDINFO
=
function
(
data
)
{
return
req
.
post
(
apis
.
deleteReceiptSendInfo
,
data
);
return
req
.
post
(
apis
.
deleteReceiptSendInfo
,
data
);
};
};
// 删除寄送信息下的账单信息
const
DELETESENDRECEIPT
=
function
(
data
)
{
return
req
.
post
(
apis
.
deleteSendReceipt
,
data
);
};
// 保存理赔件账单寄送信息
// 保存理赔件账单寄送信息
const
SAVERECEIPSENDINFO
=
function
(
data
)
{
const
SAVERECEIPSENDINFO
=
function
(
data
)
{
return
req
.
post
(
apis
.
saveReceipSendInfo
,
data
);
return
req
.
post
(
apis
.
saveReceipSendInfo
,
data
);
...
@@ -63,6 +67,7 @@ const RECEIPTPRINT= function (data) {
...
@@ -63,6 +67,7 @@ const RECEIPTPRINT= function (data) {
export
default
{
export
default
{
QUERYSENDINFOLIST
,
QUERYSENDINFOLIST
,
DELETERECEIPTSENDINFO
,
DELETERECEIPTSENDINFO
,
DELETESENDRECEIPT
,
SAVERECEIPSENDINFO
,
SAVERECEIPSENDINFO
,
QUERYSENDRECEIPLIST
,
QUERYSENDRECEIPLIST
,
QUERYNOSENDRECEIPLIST
,
QUERYNOSENDRECEIPLIST
,
...
...
This diff is collapsed.
Click to expand it.
src/components/CUSTOMER/goback/index.vue
View file @
4a6b97f0
...
@@ -15,7 +15,7 @@ export default{
...
@@ -15,7 +15,7 @@ export default{
}
}
},
},
data
(){
data
(){
return
{}
},
},
methods
:
{
methods
:
{
back
(){
back
(){
...
...
This diff is collapsed.
Click to expand it.
src/views/charge-query/index.vue
View file @
4a6b97f0
...
@@ -195,7 +195,9 @@ export default {
...
@@ -195,7 +195,9 @@ export default {
},
},
// 选中就诊时间
// 选中就诊时间
onSelectVisitTime
(
date
,
dateString
)
{
onSelectVisitTime
(
date
,
dateString
)
{
console
.
log
(
date
,
dateString
);
this
.
form
.
visitTimeStart
=
dateString
[
0
]
+
'
00:00:00
'
this
.
form
.
visitTimeEnd
=
dateString
[
1
]
+
'
23:59:59
'
console
.
log
(
date
,
dateString
);
},
},
// 重置
// 重置
handlerReset
()
{
handlerReset
()
{
...
@@ -237,7 +239,7 @@ export default {
...
@@ -237,7 +239,7 @@ export default {
return
false
;
return
false
;
}
}
this
.
pagination
.
pageNum
=
1
;
this
.
pagination
.
pageNum
=
1
;
this
.
pageForm
=
this
.
$lodash
.
cloneDeep
(
this
.
form
);
this
.
pageForm
=
this
.
$lodash
.
cloneDeep
(
{...
this
.
form
,
dateRange
:
undefined
}
);
this
.
_getChargeList
();
this
.
_getChargeList
();
});
});
},
},
...
...
This diff is collapsed.
Click to expand it.
src/views/charge-query/lpjManageDetail.vue
View file @
4a6b97f0
This diff is collapsed.
Click to expand it.
src/views/pre-auth/components/feeDetail.vue
View file @
4a6b97f0
...
@@ -83,7 +83,7 @@ export default{
...
@@ -83,7 +83,7 @@ export default{
totalAmount
:
''
,
totalAmount
:
''
,
},
},
editRules
:
{
editRules
:
{
itemCode
:
[{
required
:
true
,
message
:
"
请输入
"
,
trigger
:
"
blur
"
}],
itemCode
:
[{
required
:
true
,
message
:
"
请输入
"
,
trigger
:
"
change
"
}],
salePrice
:
[{
required
:
true
,
message
:
"
请输入
"
,
trigger
:
"
blur
"
}],
salePrice
:
[{
required
:
true
,
message
:
"
请输入
"
,
trigger
:
"
blur
"
}],
times
:
[{
required
:
true
,
message
:
"
请输入
"
,
trigger
:
"
blur
"
}],
times
:
[{
required
:
true
,
message
:
"
请输入
"
,
trigger
:
"
blur
"
}],
},
},
...
...
This diff is collapsed.
Click to expand it.
src/views/verification/collectionDetail.vue
View file @
4a6b97f0
...
@@ -107,20 +107,20 @@ import BurtPagination from "@/components/CUSTOMER/pagation";
...
@@ -107,20 +107,20 @@ import BurtPagination from "@/components/CUSTOMER/pagation";
import
{
EOBStatusOptions
}
from
'
@/utils/utilsdictOptions.js
'
import
{
EOBStatusOptions
}
from
'
@/utils/utilsdictOptions.js
'
import
moment
from
"
moment
"
;
import
moment
from
"
moment
"
;
import
mixins
from
"
@/mixins
"
;
import
mixins
from
"
@/mixins
"
;
const
columns
=
[
{
title
:
"
EOB编号
"
,
dataIndex
:
"
eobNo
"
,
ellipsis
:
true
,
width
:
150
},
{
title
:
"
EOB名称
"
,
dataIndex
:
"
eobName
"
,
ellipsis
:
true
,
width
:
195
},
{
title
:
"
核销时间
"
,
dataIndex
:
"
eobBackDate
"
,
ellipsis
:
true
,
width
:
110
,
scopedSlots
:
{
customRender
:
"
eobBackDate
"
},
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
ellipsis
:
true
,
width
:
110
},
{
title
:
"
EOB状态
"
,
dataIndex
:
"
eobSts
"
,
ellipsis
:
true
,
width
:
110
,
scopedSlots
:
{
customRender
:
"
eobSts
"
}
},
{
title
:
"
EOB赔付金额(人民币)
"
,
dataIndex
:
"
eobAmountCny
"
,
ellipsis
:
true
,
width
:
190
,},
{
title
:
"
EOB赔付金额(美元)
"
,
dataIndex
:
"
eobAmountUsd
"
,
ellipsis
:
true
,
width
:
190
,},
{
title
:
"
EOB回款金额(人民币)
"
,
dataIndex
:
"
eobBackMoneyCny
"
,
ellipsis
:
true
,
width
:
190
,},
{
title
:
"
EOB回款金额(美元)
"
,
dataIndex
:
"
eobBackMoneyUsd
"
,
ellipsis
:
true
,
width
:
190
,},
{
title
:
"
汇率差
"
,
dataIndex
:
"
backExchangeRate
"
,
ellipsis
:
true
,
width
:
110
},
];
export
default
{
export
default
{
data
()
{
data
()
{
const
columns
=
[
{
title
:
"
EOB编号
"
,
dataIndex
:
"
eobNo
"
,
ellipsis
:
true
,
width
:
150
},
{
title
:
"
EOB名称
"
,
dataIndex
:
"
eobName
"
,
ellipsis
:
true
,
width
:
195
},
{
title
:
"
核销时间
"
,
dataIndex
:
"
eobBackDate
"
,
ellipsis
:
true
,
width
:
110
,
scopedSlots
:
{
customRender
:
"
eobBackDate
"
},
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
ellipsis
:
true
,
width
:
110
},
{
title
:
"
EOB状态
"
,
dataIndex
:
"
eobSts
"
,
ellipsis
:
true
,
width
:
110
,
scopedSlots
:
{
customRender
:
"
eobSts
"
}
},
{
title
:
"
EOB赔付金额(人民币)
"
,
dataIndex
:
"
eobAmountCny
"
,
ellipsis
:
true
,
width
:
190
,},
{
title
:
"
EOB赔付金额(美元)
"
,
dataIndex
:
"
eobAmountUsd
"
,
ellipsis
:
true
,
width
:
190
,},
{
title
:
"
EOB回款金额(人民币)
"
,
dataIndex
:
"
eobBackMoneyCny
"
,
ellipsis
:
true
,
width
:
190
,},
{
title
:
"
EOB回款金额(美元)
"
,
dataIndex
:
"
eobBackMoneyUsd
"
,
ellipsis
:
true
,
width
:
190
,},
{
title
:
"
汇率差
"
,
dataIndex
:
"
backExchangeRate
"
,
ellipsis
:
true
,
width
:
110
},
];
return
{
return
{
isEdit
:
false
,
isEdit
:
false
,
columns
,
columns
,
...
@@ -281,6 +281,16 @@ export default {
...
@@ -281,6 +281,16 @@ export default {
backMoneyNo
:
this
.
backMoneyNo
,
//回款编号
backMoneyNo
:
this
.
backMoneyNo
,
//回款编号
}
}
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
let
isData
=
false
;
if
(
this
.
selectedRowKeys
&&
this
.
selectedRowKeys
.
length
){
isData
=
true
;
}
if
(
!
isData
){
for
(
let
i
in
this
.
form
){
if
(
this
.
form
[
i
]){
isData
=
true
;
return
true
;
}
}
}
if
(
!
isData
){
resolve
();
return
true
;}
// 没有数据不调接口保存直接修改显示状态就好了
this
.
$apis
.
SAVEBACKMONEY
(
formData
)
this
.
$apis
.
SAVEBACKMONEY
(
formData
)
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
if
(
res
.
returnCode
==
"
0000
"
)
{
if
(
res
.
returnCode
==
"
0000
"
)
{
...
...
This diff is collapsed.
Click to expand it.
src/views/verification/indexDetail.vue
View file @
4a6b97f0
...
@@ -81,10 +81,6 @@
...
@@ -81,10 +81,6 @@
<!-- 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"
:row-selection="isEditNewEob?{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }:null">
:row-selection="isEditNewEob?{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }:null">
<template
slot=
"visitTimeStart"
slot-scope=
"text, record"
>
<span>
{{
record
.
visitTimeStart
?
moment
(
record
.
visitTimeStart
).
format
(
'
YYYY-MM-DD
'
):
''
}}
</span>
~
<span>
{{
record
.
visitTimeEnd
?
moment
(
record
.
visitTimeEnd
).
format
(
'
YYYY-MM-DD
'
):
''
}}
</span>
</
template
>
<template
slot=
"claimsStatus"
slot-scope=
"text"
>
<template
slot=
"claimsStatus"
slot-scope=
"text"
>
<span>
{{
text
|
formatClaimsStatus
}}
</span>
<span>
{{
text
|
formatClaimsStatus
}}
</span>
</
template
>
</
template
>
...
@@ -141,7 +137,7 @@ export default {
...
@@ -141,7 +137,7 @@ export default {
{
title
:
"
账单编号
"
,
dataIndex
:
"
receiptNo
"
,
ellipsis
:
true
,
width
:
100
},
{
title
:
"
账单编号
"
,
dataIndex
:
"
receiptNo
"
,
ellipsis
:
true
,
width
:
100
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
ellipsis
:
true
,
width
:
85
},
{
title
:
"
客户姓名
"
,
dataIndex
:
"
patientName
"
,
ellipsis
:
true
,
width
:
85
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
ellipsis
:
true
,
width
:
80
},
{
title
:
"
保险公司
"
,
dataIndex
:
"
payorName
"
,
ellipsis
:
true
,
width
:
80
},
{
title
:
"
就诊日期
"
,
dataIndex
:
"
visitTimeStart
"
,
ellipsis
:
true
,
width
:
110
,
scopedSlots
:
{
customRender
:
"
visitTimeStart
"
}
},
{
title
:
"
就诊日期
"
,
dataIndex
:
"
receiptDate
"
,
ellipsis
:
true
,
width
:
110
},
{
title
:
"
理赔状态
"
,
dataIndex
:
"
claimsStatus
"
,
ellipsis
:
true
,
width
:
90
,
scopedSlots
:
{
customRender
:
"
claimsStatus
"
}
},
{
title
:
"
理赔状态
"
,
dataIndex
:
"
claimsStatus
"
,
ellipsis
:
true
,
width
:
90
,
scopedSlots
:
{
customRender
:
"
claimsStatus
"
}
},
{
title
:
"
账单金额
"
,
dataIndex
:
"
receiptAmount
"
,
ellipsis
:
true
,
width
:
85
},
{
title
:
"
账单金额
"
,
dataIndex
:
"
receiptAmount
"
,
ellipsis
:
true
,
width
:
85
},
{
title
:
"
自付金额
"
,
dataIndex
:
"
selfpaidAmount
"
,
ellipsis
:
true
,
width
:
85
},
{
title
:
"
自付金额
"
,
dataIndex
:
"
selfpaidAmount
"
,
ellipsis
:
true
,
width
:
85
},
...
...
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