|
|
|
@ -50,6 +50,7 @@ |
|
|
|
|
<div class="recharge-note"> |
|
|
|
|
<p>{{langue.attention | filtVal(coin.tokenSymbol)}}</p> |
|
|
|
|
</div> |
|
|
|
|
<div id="btn-recharge" class="btn-recharge">{{langue.confirm}}</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</body> |
|
|
|
@ -63,7 +64,8 @@ |
|
|
|
|
coinWallet: "币币钱包", |
|
|
|
|
currencyWallet: "法币钱包", |
|
|
|
|
remark: "备注", |
|
|
|
|
|
|
|
|
|
confirm: "确认充值" |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
zh_HK: { |
|
|
|
|
title: "充幣", |
|
|
|
@ -73,6 +75,7 @@ |
|
|
|
|
coinWallet: "幣幣錢包", |
|
|
|
|
currencyWallet: "法幣錢包", |
|
|
|
|
remark: "備註", |
|
|
|
|
confirm: "確認充值" |
|
|
|
|
}, |
|
|
|
|
en_US: { |
|
|
|
|
title: "Recharge ", |
|
|
|
@ -82,6 +85,7 @@ |
|
|
|
|
coinWallet: "CCT", |
|
|
|
|
currencyWallet: "OTC", |
|
|
|
|
remark: "Remark", |
|
|
|
|
confirm: "Recharge" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -98,15 +102,15 @@ |
|
|
|
|
filtVal: function(val, name) { |
|
|
|
|
return val.replace(/\{\{coin\.tokenSymbol\}\}/g, name) |
|
|
|
|
}, |
|
|
|
|
filetWalletType: function(val) { |
|
|
|
|
if(Object.is("CCT", val)) { |
|
|
|
|
return langue.coinWallet; |
|
|
|
|
} |
|
|
|
|
if(Object.is("C2C", val)) { |
|
|
|
|
return langue.currencyWallet; |
|
|
|
|
} |
|
|
|
|
filetWalletType: function(val) { |
|
|
|
|
if (Object.is("CCT", val)) { |
|
|
|
|
return langue.coinWallet; |
|
|
|
|
} |
|
|
|
|
if (Object.is("C2C", val)) { |
|
|
|
|
return langue.currencyWallet; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -122,7 +126,7 @@ |
|
|
|
|
width: 200, |
|
|
|
|
height: 200 |
|
|
|
|
}); |
|
|
|
|
if(dataInfo.coin.addr != '') { |
|
|
|
|
if (dataInfo.coin.addr != '') { |
|
|
|
|
qrcode.makeCode(dataInfo.coin.addr); |
|
|
|
|
} else { |
|
|
|
|
require(['walletApi'], function(walletApi) { |
|
|
|
@ -134,18 +138,39 @@ |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 確認充值点击事件 |
|
|
|
|
document.getElementById('btn-recharge').addEventListener('tap', function() { |
|
|
|
|
console.log(JSON.stringify(dataInfo.coin)); |
|
|
|
|
recharge(); |
|
|
|
|
}); |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
// 国际化统一方法 |
|
|
|
|
window.addEventListener('switchLangueData', function(e) { |
|
|
|
|
dataInfo.langue = langues[e.detail]; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
function recharge() { |
|
|
|
|
require(['walletApi'], function(walletApi) { |
|
|
|
|
walletApi.getRecharge({ |
|
|
|
|
walletType: dataInfo.coin.walletType, |
|
|
|
|
moduleType: dataInfo.coin.moduleType, |
|
|
|
|
addr: dataInfo.coin.addr, |
|
|
|
|
tokenId: dataInfo.coin.tokenSymbol |
|
|
|
|
}, |
|
|
|
|
function(data) { |
|
|
|
|
app.toast(data.msg) |
|
|
|
|
console.log(data.msg) |
|
|
|
|
}); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 复制到剪切板 |
|
|
|
|
* @param {Object} 要复制的值 |
|
|
|
|
*/ |
|
|
|
|
function copyToClip(value) { |
|
|
|
|
if(mui.os.android) { |
|
|
|
|
if (mui.os.android) { |
|
|
|
|
var Context = plus.android.importClass("android.content.Context"); |
|
|
|
|
var main = plus.android.runtimeMainActivity(); |
|
|
|
|
var clip = main.getSystemService(Context.CLIPBOARD_SERVICE); |
|
|
|
@ -161,4 +186,4 @@ |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
</html> |
|
|
|
|
</html> |
|
|
|
|