修改提现逻辑

This commit is contained in:
dragon
2024-09-03 11:02:38 +08:00
parent 840d5393be
commit b7531e7c14
2 changed files with 5 additions and 5 deletions

View File

@@ -61,10 +61,10 @@ function getConfig () {
weekMaxValue = res.data.weekMaxValue;
var str = `
<p>1、收益鑽石達到${res.data.minValue}或以上可以申請提領</p>
<p>2、提領鑽石必須為1000的整倍數</p>
<p>2、提領鑽石必須為10000的整倍數</p>
<p>3、每周可提領次數<i>${res.data.weekLimitCount}</i>次, &nbsp;&nbsp;提領手續費:<i>${res.data.chargeRate}%</i></p>
<p>4、台幣提領請聯繫客服微信sd245376</p>
<p>5、如您使用Payoneer帳戶提領因Payoneer要求付款最少50美元需要滿足385000鑽石後發起不滿足的提領將會被駁回</p>
<p>5、如您使用Payoneer帳戶提領因Payoneer要求付款最少50美元需要滿足550000鑽石後發起不滿足的提領將會被駁回</p>
`
$('.withdrawal').append(str);
getAccounts();
@@ -341,8 +341,8 @@ $('.goldPub .goldPub_in .but').click(function () {
toastMsg(`最少申請鑽石为${minValue}`);
return
}
if (num % 1000 != 0) {
toastMsg(`提領鑽石必須為1000的整倍數`);
if (num % 10000 != 0) {
toastMsg(`提領鑽石必須為10000的整倍數`);
return
}
calculate();

View File

@@ -24,7 +24,7 @@
<p>4.鑽石數量大於或等於<b class="b1"></b>鑽石才能申請提取;</p>
<p>5.如您的提領信息有誤無法發放鑽石原路退回帳號請聯繫客服微信sd245376</p>
<p>6.鑽石可兌換為金幣兌換比例1000鑽石=1000金幣。</p>
<p>7.台幣提領請聯繫客服微信sd245376如您使用Payoneer帳戶提領Payoneer要求50美元起付需要滿足385,000鑽石後發起不滿足的提領將會被駁回。</p>
<p>7.台幣提領請聯繫客服微信sd245376如您使用Payoneer帳戶提領Payoneer要求50美元起付需要滿足550000鑽石後發起不滿足的提領將會被駁回。</p>
</div>
</body>