Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
abdf93a7
Commit
abdf93a7
authored
Jun 03, 2022
by
季圣华
Browse files
优化账户流水界面,给正数的金额前加+符号
parent
da866820
Changes
1
Hide whitespace changes
Inline
Side-by-side
jshERP-web/src/views/report/modules/AccountInOutList.vue
View file @
abdf93a7
...
...
@@ -80,12 +80,15 @@
if
(
r
.
aList
&&
r
.
amList
)
{
let
aListArr
=
r
.
aList
.
toString
().
split
(
"
,
"
);
let
amListArr
=
r
.
amList
.
toString
().
split
(
"
,
"
);
let
res
=
""
;
let
res
=
0
;
for
(
let
i
=
0
;
i
<
aListArr
.
length
;
i
++
)
{
if
(
aListArr
[
i
]
==
r
.
accountId
)
{
res
=
amListArr
[
i
];
}
}
if
(
res
>
0
)
{
res
=
'
+
'
+
res
}
return
res
+
"
[多账户]
"
;
}
else
{
...
...
Write
Preview
Supports
Markdown
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