Commit 94084f4c by agan

添加payoneer英文说明

parent 43d084d0
Showing with 49 additions and 6 deletions
......@@ -26,13 +26,55 @@
<body style="background: #000;">
<div class="bg">
<p style="font-size: 0.4rem;font-weight: bold;"> Payoneer提現說明</p>
<p style="margin-top: 1rem;">一,36050螢火(含1050螢火的稅)=50美元</p>
<p>二,可提現最低金額為$50,且必須為10的整數倍。選擇全部體現后,會自動算出可提現的最大金額。</p>
<p>三,提現后,一般7個工作日内進行處理。</p>
<p>四,Payoneer收取3%的稅,所以稅後可提現螢火=稅前可提現螢火/1.03</p>
<p>五,可提現螢火詳情請前往APP-我的-螢火體現中查詢</p>
<div class="lang_CN" style="display:none;">
<p style="font-size: 0.4rem;font-weight: bold;"> Payoneer提現說明</p>
<p style="margin-top: 1rem;">一,36050螢火(含1050螢火的稅)=50美元</p>
<p>二,可提現最低金額為$50,且必須為10的整數倍。選擇全部體現后,會自動算出可提現的最大金額。</p>
<p>三,提現后,一般7個工作日内進行處理。</p>
<p>四,Payoneer收取3%的稅,所以稅後可提現螢火=稅前可提現螢火/1.03</p>
<p>五,可提現螢火詳情請前往APP-我的-螢火體現中查詢</p>
</div>
<div class="lang_EN" style="display:none;">
<p style="font-size: 0.4rem;font-weight: bold;"> Payoneer Withdrawal Details</p>
<p style="margin-top: 1rem;">1. 36050 FIREs(Containing tax of 1050 FIREs)=50 USD</p>
<p>2. Minimum Withdrawal Amount is $50, also the amount should be an integer multiple of 10. When you click
"withdraw
all" on the page,the system will calculate the maximun amount that you can withdraw automatically.</p>
<p>3. The withdrawal will be deal within 7 working days after you reqeusted withdrawal.</p>
<p>4. When you use Payoneer to withdraw, 3% FIREs will be deducted as tax.</p>
<p>5. If you want to check the balance FIREs, please check by clicking "Me"-"FIREs" on the APP.</p>
</div>
</div>
</body>
<script type="text/javascript" src="https://app.ixiulive.com/static/js/jquery-3.1.1.min.js"></script>
<script>
var langCon = getRequest().lang;
// 0,2 繁中 1英语 7阿语 3泰语 8越南语 4日语 5印尼文
if (langCon == 0 || langCon == 2) {
$('.lang_CN').show();
$('.lang_EN').hide();
$('title').html('Payoneer提現説明')
} else {
$('.lang_CN').hide();
$('.lang_EN').show();
$('title').html('Payoneer Withdrawal Details')
}
//獲取url參數
function getRequest() {
var url = location.href;
var theRequest = new Object();
if (url.indexOf("?") != -1) {
var str = url.substr(url.indexOf("?") + 1);
strs = str.split("&");
for (var i = 0; i < strs.length; i++) {
theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
}
}
return theRequest;
}
</script>
</html>
\ No newline at end of file
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 sign in to comment