新增提现倍数规则
This commit is contained in:
@@ -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();
|
||||||
|
@@ -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>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user