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
e82cbb8e
Commit
e82cbb8e
authored
Mar 09, 2023
by
yanglilong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'yll-0303' into 'master'
EOB账单回款调整 See merge request
!31
parents
1deb9512
8e2ea560
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
indexDetail.vue
src/views/verification/indexDetail.vue
+9
-4
No files found.
src/views/verification/indexDetail.vue
View file @
e82cbb8e
...
...
@@ -136,7 +136,7 @@
</a-col>
<a-col
:lg=
"12"
:xs=
"24"
>
<a-form-model-item
label=
"账单回款金额"
prop=
"paidAmountEob"
>
<a-input
v-model.trim=
"editFormObj.paidAmountEob"
placeholder=
"账单回款金额"
type=
"number"
/>
<a-input
v-model.trim=
"editFormObj.paidAmountEob"
placeholder=
"账单回款金额"
type=
"number"
@
change=
"changePaidAmount"
/>
</a-form-model-item>
</a-col>
<a-col
:lg=
"12"
:xs=
"24"
>
...
...
@@ -330,14 +330,19 @@ export default {
this
.
dialogShow
=
true
;
this
.
$nextTick
(()
=>
{
this
.
editFormObj
=
{
actualAmount
:
record
.
actualAmount
,
// 该条记录的折后金额
id
:
record
.
id
,
receiptNo
:
record
.
receiptNo
,
refuseAmountEob
:
record
.
refuseAmountEob
||
""
,
claimsStatus
:
record
.
claimsStatus
||
""
,
paidAmountEob
:
record
.
paidAmountEob
||
""
,
refuseAmountEob
:
record
.
refuseAmountEob
||
''
,
claimsStatus
:
record
.
claimsStatus
||
"
01
"
,
paidAmountEob
:
record
.
paidAmountEob
||
record
.
actualAmount
||
""
,
};
})
},
// 账单汇款金额输入改变 未赔付金额=账单金额-账单回款金额
changePaidAmount
()
{
this
.
editFormObj
.
refuseAmountEob
=
(
this
.
editFormObj
.
actualAmount
||
0
)
-
(
this
.
editFormObj
.
paidAmountEob
||
0
)
},
//编辑保存
handleEditOK
()
{
this
.
$refs
.
editForm
.
validate
((
valid
)
=>
{
...
...
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