完善钱包模块

master
joeyoyo 5 years ago
parent 5deefbe8ee
commit 2277033a29
  1. 1
      html/wallet/html/assets.html
  2. 8
      html/wallet/html/extract_coin_to_token.html
  3. 4
      html/wallet/html/recharge.html
  4. 4
      html/wallet/html/wallet.html

@ -319,7 +319,6 @@
// 钱包数据更新的监听
window.addEventListener('walletSaveEvent', function(e) {
console.log(11);
record();
walletApi.getWallet({
walletType: dataInfo.coin.walletType,

@ -214,11 +214,11 @@
EOS: {
coinName: "EOS",
moduleType: "eos"
},
PC: {
coinName: "PC",
moduleType: "eth"
}
// PC: {
// coinName: "PC",
// moduleType: "eth"
// }
};
require(['Vue', 'app', 'mui', 'walletApi'], function(Vue, app, mui, walletApi) {
var langue = langues[app.getLanguageLocalStorage()];

@ -162,6 +162,10 @@
function(data) {
app.toast(data.msg)
console.log(data.msg)
var self = plus.webview.currentWebview();//本页面
var _opener = self.opener();
_opener.show();
self.close();
});
})
}

@ -206,14 +206,12 @@
function saveWallet() {
walletApi.getCCTWallets(function(data) {
console.log(data);
dataInfo.coins.CCT = data;
console.log(JSON.stringify(dataInfo.coins.CCT));
coinsEvenPush(data);
valuationFun(dataInfo.marketList, walletApi.walletType.CCT);
})
walletApi.getC2CWallets(function(data) {
console.log(data);
dataInfo.coins.C2C = data;
valuationFun(dataInfo.marketList, walletApi.walletType.C2C);
})

Loading…
Cancel
Save