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
68a9bcec
Commit
68a9bcec
authored
Aug 18, 2023
by
金王方-del
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'func_eccs_2334' into 'test'
fix: 修改样式 See merge request
!60
parents
02f954ac
46ea474c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
6 deletions
+17
-6
lpjManageDetail.vue
src/views/charge-query/lpjManageDetail.vue
+17
-6
No files found.
src/views/charge-query/lpjManageDetail.vue
View file @
68a9bcec
...
...
@@ -110,12 +110,14 @@
<div
class=
"btn-div flex"
>
<div
class=
"total-div flex"
>
<div>
<span>
记账总
单数:
</span>
<span>
总帐
单数:
</span>
<span>
{{
totalListNum
+
selectedRowKeys
.
length
}}
</span>
个
<span
:style=
"
{color: 'red'}" v-if="invalidNum > 0">(无效
{{
invalidNum
}}
个)
</span>
</div>
<div>
<span>
账单总金额
:
</span>
<span>
理赔金额合计
:
</span>
<span>
{{
totalAmount
}}
</span>
元
<span
:style=
"
{color: 'red'}" v-if="invalidActualAmount > 0">(无效
{{
invalidActualAmount
}}
元)
</span>
</div>
</div>
<a-form-model-item
label=
"button"
>
...
...
@@ -259,7 +261,9 @@ export default {
],
totalActualAmount
:
0
,
totalListNum
:
0
,
selectActualAmount
:
0
selectActualAmount
:
0
,
invalidNum
:
0
,
invalidActualAmount
:
0
};
},
components
:
{
...
...
@@ -322,7 +326,10 @@ export default {
this
.
$message
.
warning
(
'
寄送批号已存在
'
)
}
else
{
arr
.
push
(
idx
);
if
(
idx
.
status
==
2
){
this
.
invalidNum
++
this
.
invalidActualAmount
=
Big
(
this
.
invalidActualAmount
).
plus
(
this
.
dataList
[
idx
].
actualAmount
)
}
this
.
selectActualAmount
=
Big
(
this
.
selectActualAmount
).
plus
(
this
.
dataList
[
idx
].
actualAmount
)
}
}
...
...
@@ -371,10 +378,14 @@ export default {
if
(
this
.
dataList
.
length
>
0
){
this
.
dataList
.
forEach
((
item
)
=>
{
totalNum
++
totalMoney
+=
Number
(
item
.
actualAmount
)
totalMoney
=
Big
(
totalMoney
).
plus
(
item
.
actualAmount
)
if
(
item
.
status
==
2
){
this
.
invalidNum
++
this
.
invalidActualAmount
=
Big
(
this
.
invalidActualAmount
).
plus
(
item
.
actualAmount
)
}
})
}
this
.
totalActualAmount
=
totalMoney
.
toFixed
(
2
)
this
.
totalActualAmount
=
totalMoney
this
.
totalListNum
=
totalNum
},
// 获取保险公司下拉选项
...
...
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