新增提现倍数规则

This commit is contained in:
Dragon
2024-01-08 11:12:20 +08:00
parent 50e25c99bb
commit fbe20e1576
2 changed files with 5 additions and 3 deletions

View File

@@ -56,9 +56,10 @@ function getConfig () {
weekMaxValue = res.data.weekMaxValue; weekMaxValue = res.data.weekMaxValue;
var str = ` var str = `
<p>收益金幣達到${res.data.minValue}或以上可以申請提領</p> <p>收益金幣達到${res.data.minValue}或以上可以申請提領</p>
<p>提領金幣必須為100的整倍數</p> <p>提領金幣必須為1000的整倍數</p>
<p>每周可提領次數:<i>${res.data.weekLimitCount}</i></p> <p>每周可提領次數:<i>${res.data.weekLimitCount}</i></p>
<p>提領手續費:<i>${res.data.chargeRate}%</i></p> <p>提領手續費:<i>${res.data.chargeRate}%</i></p>
<p>台幣提領請聯繫客服微信sd245376</p>
` `
$('.withdrawal').append(str); $('.withdrawal').append(str);
getAccounts(); getAccounts();
@@ -242,8 +243,8 @@ $('.goldPub .goldPub_in .but').click(function () {
toastMsg(`最少申請金幣为${minValue}`); toastMsg(`最少申請金幣为${minValue}`);
return return
} }
if (num % 100 != 0) { if (num % 1000 != 0) {
toastMsg(`提領金幣必須為100的整倍數`); toastMsg(`提領金幣必須為1000的整倍數`);
return return
} }
calculate(); calculate();

View File

@@ -30,6 +30,7 @@
<p>4.金幣兌換鑽石规则</p> <p>4.金幣兌換鑽石规则</p>
<p>金幣可兌換為鑽石兌換比例1000金幣=1000鑽石。</p> <p>金幣可兌換為鑽石兌換比例1000金幣=1000鑽石。</p>
<p>5.不提取不兌換,金幣則不會被清空。</p> <p>5.不提取不兌換,金幣則不會被清空。</p>
<p>台幣提領請聯繫客服微信sd245376</p>
</div> </div>
</body> </body>