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
da866820
Commit
da866820
authored
Jun 03, 2022
by
季圣华
Browse files
优化账户流水界面,给正数的金额前加+符号
parent
8107c0a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
jshERP-web/src/views/report/modules/AccountInOutList.vue
View file @
da866820
...
...
@@ -89,7 +89,11 @@
return
res
+
"
[多账户]
"
;
}
else
{
return
r
.
changeAmount
;
if
(
r
.
changeAmount
>
0
)
{
return
'
+
'
+
r
.
changeAmount
}
else
{
return
r
.
changeAmount
}
}
}
},
...
...
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