资金利息修改

master
OathK1per 2022-02-15 17:03:47 +08:00
parent dd6e23f5ef
commit bd6ab8d96b
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}