From abdf93a7b76506fef9ffd9c6482fb9f309b8f710 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Fri, 3 Jun 2022 00:04:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=B4=A6=E6=88=B7=E6=B5=81?= =?UTF-8?q?=E6=B0=B4=E7=95=8C=E9=9D=A2=EF=BC=8C=E7=BB=99=E6=AD=A3=E6=95=B0?= =?UTF-8?q?=E7=9A=84=E9=87=91=E9=A2=9D=E5=89=8D=E5=8A=A0+=E7=AC=A6?= =?UTF-8?q?=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-web/src/views/report/modules/AccountInOutList.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jshERP-web/src/views/report/modules/AccountInOutList.vue b/jshERP-web/src/views/report/modules/AccountInOutList.vue index dbe14fd3..bdf3c983 100644 --- a/jshERP-web/src/views/report/modules/AccountInOutList.vue +++ b/jshERP-web/src/views/report/modules/AccountInOutList.vue @@ -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 {