diff --git a/src/assets/home/iPhone.png b/src/assets/home/iPhone.png index 0759317..2436736 100644 Binary files a/src/assets/home/iPhone.png and b/src/assets/home/iPhone.png differ diff --git a/src/assets/home/qrcode.png b/src/assets/home/qrcode.png index 0235b8d..d2020f4 100644 Binary files a/src/assets/home/qrcode.png and b/src/assets/home/qrcode.png differ diff --git a/src/components/balances/balances-deposit-widget.vue b/src/components/balances/balances-deposit-widget.vue index 903f2ea..a6c43f2 100644 --- a/src/components/balances/balances-deposit-widget.vue +++ b/src/components/balances/balances-deposit-widget.vue @@ -2,12 +2,12 @@
@@ -86,6 +99,11 @@ @@ -344,4 +413,20 @@ export default { .el-dialog__body { padding: 35px; } +.addBox { + position: relative; + margin-bottom: 60px; +} +.add { + color: #e8c141; + display: inline-block; + padding: 12px 12px; + // background-color: #e8494a; + border-radius: 3px; + border: 1px solid #e8c141; + cursor: pointer; + position: absolute; + top: 0; + left: 40%; +} diff --git a/src/components/balances/banlanes-tabds.vue b/src/components/balances/banlanes-tabds.vue index cc9d409..b6a1e6c 100644 --- a/src/components/balances/banlanes-tabds.vue +++ b/src/components/balances/banlanes-tabds.vue @@ -469,55 +469,56 @@ export default { // this.$message.warning('敬请期待!'); // return; // } - // this.ctrl.depositDialogVisible = true; + this.ctrl.depositDialogVisible = true; this.tatoo = name; - if (name.tokenSymbol == 'EOS') { - addEos({ - addr: name.addr, - tokenId: name.tokenSymbol, - walletType: 'CCT', - }).then(res => { - if (res.data.code === 200) { - // 充值成功! - this.$message.success(this.$t('balances.table.add')); - setInterval(() => { - location.reload(); //成功刷新页面 - }, 1000); - } else { - this.$message.error(res.data.msg); - } - }); - } else if (name.tokenSymbol == 'BTC' || name.tokenSymbol == 'USDT') { - addBtc({ - addr: name.addr, - tokenId: name.tokenSymbol, - walletType: 'CCT', - }).then(res => { - if (res.data.code === 200) { - this.$message.success(this.$t('balances.table.add')); - setInterval(() => { - location.reload(); //成功刷新页面 - }, 1000); - } else { - this.$message.error(res.data.msg); - } - }); - } else { - addEth({ - addr: name.addr, - tokenId: name.tokenSymbol, - walletType: 'CCT', - }).then(res => { - if (res.data.code === 200) { - this.$message.success(this.$t('balances.table.add')); - setInterval(() => { - location.reload(); //成功刷新页面 - }, 1000); - } else { - this.$message.error(res.data.msg); - } - }); - } + + // if (name.tokenSymbol == 'EOS') { + // addEos({ + // addr: name.addr, + // tokenId: name.tokenSymbol, + // walletType: 'CCT', + // }).then(res => { + // if (res.data.code === 200) { + // // 充值成功! + // this.$message.success(this.$t('balances.table.add')); + // setInterval(() => { + // location.reload(); //成功刷新页面 + // }, 1000); + // } else { + // this.$message.error(res.data.msg); + // } + // }); + // } else if (name.tokenSymbol == 'BTC' || name.tokenSymbol == 'USDT') { + // addBtc({ + // addr: name.addr, + // tokenId: name.tokenSymbol, + // walletType: 'CCT', + // }).then(res => { + // if (res.data.code === 200) { + // this.$message.success(this.$t('balances.table.add')); + // setInterval(() => { + // location.reload(); //成功刷新页面 + // }, 1000); + // } else { + // this.$message.error(res.data.msg); + // } + // }); + // } else { + // addEth({ + // addr: name.addr, + // tokenId: name.tokenSymbol, + // walletType: 'CCT', + // }).then(res => { + // if (res.data.code === 200) { + // this.$message.success(this.$t('balances.table.add')); + // setInterval(() => { + // location.reload(); //成功刷新页面 + // }, 1000); + // } else { + // this.$message.error(res.data.msg); + // } + // }); + // } break; case 'withdrawal': // 提币弹窗 diff --git a/src/components/balances/bibi-balances/bibi-balances-deposit.vue b/src/components/balances/bibi-balances/bibi-balances-deposit.vue index 76fefea..870ce50 100644 --- a/src/components/balances/bibi-balances/bibi-balances-deposit.vue +++ b/src/components/balances/bibi-balances/bibi-balances-deposit.vue @@ -2,12 +2,12 @@ @@ -86,7 +99,11 @@ @@ -341,4 +409,20 @@ export default { .el-dialog__body { padding: 35px; } +.addBox { + position: relative; + margin-bottom: 60px; +} +.add { + color: #e8c141; + display: inline-block; + padding: 12px 12px; + // background-color: #e8494a; + border-radius: 3px; + border: 1px solid #e8c141; + cursor: pointer; + position: absolute; + top: 0; + left: 40%; +} diff --git a/src/components/balances/bibi-balances/bibi-balances-table.vue b/src/components/balances/bibi-balances/bibi-balances-table.vue index 327595c..553f0cb 100644 --- a/src/components/balances/bibi-balances/bibi-balances-table.vue +++ b/src/components/balances/bibi-balances/bibi-balances-table.vue @@ -473,55 +473,55 @@ export default { // return; // } // 充值弹窗 - // this.ctrl.depositDialogVisible = true; + this.ctrl.depositDialogVisible = true; this.tatoo = name; - if (name.tokenSymbol == 'EOS') { - addEos({ - addr: name.addr, - tokenId: name.tokenSymbol, - walletType: 'C2C', - }).then(res => { - if (res.data.code === 200) { - // 充值成功! - this.$message.success(this.$t('balances.table.add')); - setInterval(() => { - location.reload(); //成功刷新页面 - }, 1000); - } else { - this.$message.error(res.data.msg); - } - }); - } else if (name.tokenSymbol == 'BTC' || name.tokenSymbol == 'USDT') { - addBtc({ - addr: name.addr, - tokenId: name.tokenSymbol, - walletType: 'C2C', - }).then(res => { - if (res.data.code === 200) { - this.$message.success(this.$t('balances.table.add')); - setInterval(() => { - location.reload(); //成功刷新页面 - }, 1000); - } else { - this.$message.error(res.data.msg); - } - }); - } else { - addEth({ - addr: name.addr, - tokenId: name.tokenSymbol, - walletType: 'C2C', - }).then(res => { - if (res.data.code === 200) { - this.$message.success(this.$t('balances.table.add')); - setInterval(() => { - location.reload(); //成功刷新页面 - }, 1000); - } else { - this.$message.error(res.data.msg); - } - }); - } + // if (name.tokenSymbol == 'EOS') { + // addEos({ + // addr: name.addr, + // tokenId: name.tokenSymbol, + // walletType: 'C2C', + // }).then(res => { + // if (res.data.code === 200) { + // // 充值成功! + // this.$message.success(this.$t('balances.table.add')); + // setInterval(() => { + // location.reload(); //成功刷新页面 + // }, 1000); + // } else { + // this.$message.error(res.data.msg); + // } + // }); + // } else if (name.tokenSymbol == 'BTC' || name.tokenSymbol == 'USDT') { + // addBtc({ + // addr: name.addr, + // tokenId: name.tokenSymbol, + // walletType: 'C2C', + // }).then(res => { + // if (res.data.code === 200) { + // this.$message.success(this.$t('balances.table.add')); + // setInterval(() => { + // location.reload(); //成功刷新页面 + // }, 1000); + // } else { + // this.$message.error(res.data.msg); + // } + // }); + // } else { + // addEth({ + // addr: name.addr, + // tokenId: name.tokenSymbol, + // walletType: 'C2C', + // }).then(res => { + // if (res.data.code === 200) { + // this.$message.success(this.$t('balances.table.add')); + // setInterval(() => { + // location.reload(); //成功刷新页面 + // }, 1000); + // } else { + // this.$message.error(res.data.msg); + // } + // }); + // } break; case 'withdrawal': diff --git a/src/pages/index.vue b/src/pages/index.vue index 94750f5..ebe41e0 100644 --- a/src/pages/index.vue +++ b/src/pages/index.vue @@ -264,7 +264,7 @@ - +