v1.1 后台-赠送钻石水晶-调整钻石与实际充值金额的比例到1000

This commit is contained in:
2022-11-01 15:35:19 +08:00
parent 7eb0e556f9
commit 3461af647f

View File

@@ -168,8 +168,8 @@
$("#tipModal").modal('show');
return;
}
var minGold = parseInt(actualAmount) * 8;
var maxGold = parseInt(actualAmount) * 12;
var minGold = parseInt(actualAmount) * 800;
var maxGold = parseInt(actualAmount) * 1200;
var actualGold = parseInt(num);
if(actualGold < minGold || actualGold > maxGold) {
$("#tipMsg").text("赠送钻石与充值金额兑换比例不正确!");