diff --git a/html/wallet/html/assets.html b/html/wallet/html/assets.html
index 73332db..25412ae 100644
--- a/html/wallet/html/assets.html
+++ b/html/wallet/html/assets.html
@@ -319,7 +319,6 @@
// 钱包数据更新的监听
window.addEventListener('walletSaveEvent', function(e) {
- console.log(11);
record();
walletApi.getWallet({
walletType: dataInfo.coin.walletType,
diff --git a/html/wallet/html/extract_coin_to_token.html b/html/wallet/html/extract_coin_to_token.html
index 44d36b3..0f8f349 100644
--- a/html/wallet/html/extract_coin_to_token.html
+++ b/html/wallet/html/extract_coin_to_token.html
@@ -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()];
diff --git a/html/wallet/html/recharge.html b/html/wallet/html/recharge.html
index d845e78..17c41c1 100644
--- a/html/wallet/html/recharge.html
+++ b/html/wallet/html/recharge.html
@@ -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();
});
})
}
diff --git a/html/wallet/html/wallet.html b/html/wallet/html/wallet.html
index c094517..e0451b1 100644
--- a/html/wallet/html/wallet.html
+++ b/html/wallet/html/wallet.html
@@ -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);
})