js精确计算浮点数相加
const payPrice= (row.payPrice.toString().split(".")[1] || "").length;
const cash= (row.cash.toString().split(".")[1] || "").length;
const baseNum = Math.pow(10, Math.max(payPrice, cash));
return (row.payPrice * baseNum + row.cash * baseNum) / baseNum;