From bd6ab8d96bffb32868708aa22725c8f0cfd8aafa Mon Sep 17 00:00:00 2001 From: OathK1per Date: Tue, 15 Feb 2022 17:03:47 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B5=84=E9=87=91=E5=88=A9=E6=81=AF=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/static/assets/js/project_budget_plan.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/static/assets/js/project_budget_plan.js b/src/main/resources/static/assets/js/project_budget_plan.js index 31d5d68..e58d773 100644 --- a/src/main/resources/static/assets/js/project_budget_plan.js +++ b/src/main/resources/static/assets/js/project_budget_plan.js @@ -609,7 +609,7 @@ function summationByClass(input, className, myIndex) { var trs = input.parent().parent().parent().find("tr"); trs.each(function (index, element) { //myIndex从0开始,刨除表头和总计、总计两行 - index-=3; + index-=2; if(index>=0 && index<=myIndex){ total += f2($(this).find(className).val()); }