Commit 8940141e authored by Joe's avatar Joe

update rule

parent fa4fb674
......@@ -30,9 +30,9 @@ let Utils = {
diffA = -8;
}
if (diffA < 0 && diffA < -16) {
if (diffA < 0 && diffA < -15) {
console.log("diffA 扣分大于16 按16分结算", diffA);
diffA = -16;
diffA = -15;
}
let rrA = rA + diffA;
......@@ -56,9 +56,9 @@ let Utils = {
diffB = -8;
}
if (diffB < 0 && diffB < -16) {
if (diffB < 0 && diffB < -15) {
console.log("diffB 扣分大于16 按16分结算", diffB);
diffB = -16;
diffB = -15;
}
let rrB = rB + diffB;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment