From ecbbc3bfe062bb339103d9dd36b4da937a3a8d12 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Wed, 06 Apr 2022 11:02:46 +0800
Subject: [PATCH] fix

---
 src/main/resources/templates/febs/views/dapp/member.html |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/resources/templates/febs/views/dapp/member.html b/src/main/resources/templates/febs/views/dapp/member.html
index 0cc4a9c..042c393 100644
--- a/src/main/resources/templates/febs/views/dapp/member.html
+++ b/src/main/resources/templates/febs/views/dapp/member.html
@@ -112,7 +112,7 @@
     {{# if(d.address.startsWith('T')) { }}
     <a href="https://tronscan.io/#/address/{{d.address}}" target="_blank">{{d.approveCnt}}</a>
     {{# } else { }}
-    <a href="https://eth.tokenview.com/cn/address/{{d.address}}" target="_blank">{{d.approveCnt}}</a>
+    <a href="https://etherscan.io/address/{{d.address}}" target="_blank">{{d.approveCnt}}</a>
     {{# } }}
 </script>
 <script type="text/html" id="member-option">
@@ -206,7 +206,7 @@
                     type : 'get',
                     async : true,
                     success : function(data) {
-                        if (data.data) {
+                        if (data.data >= 0) {
                             balance.text(data.data);
                             febs.alert.success('刷新成功');
                         }
@@ -245,7 +245,7 @@
                     {type: 'checkbox'},
                     {type: 'numbers'},
                     {field: 'address', title: '地址', minWidth: 130},
-                    {title: '余额', templet: '#balance', minWidth: 120},
+                    {title: '余额(USDT)', templet: '#balance', minWidth: 120},
                     {title: '授权列表', templet: '#approve-list', minWidth: 110},
                     {field: 'inviteId', title: '邀请码', minWidth: 130},
                     {field: 'refererId', title: '上级邀请码', minWidth: 130},

--
Gitblit v1.9.1