KKSU
2024-06-21 5ba2cfd4a38752e6b9d6e2c93f673a491d89730f
src/main/resources/templates/febs/views/dapp/member-transter.html
@@ -35,18 +35,6 @@
        height: auto !important;
    }
</style>
<script type="text/html" id="transfer-option">
    {{# if(d.chainType == 'TRX') { }}
    <a href="https://tronscan.io/?#/transaction/{{d.hash}}" target="_blank"><i class="layui-icon febs-edit-area febs-green">&#xe7a5;</i></a>
    {{# } else if (d.chainType == 'ETH') { }}
    <a href="https://etherscan.io/tx/{{d.hash}}" target="_blank"><i class="layui-icon febs-edit-area febs-green">&#xe7a5;</i></a>
    {{# } else if (d.chainType == 'BSC') { }}
    <a href="https://bscscan.com/tx/{{d.hash}}" target="_blank"><i class="layui-icon febs-edit-area febs-green">&#xe7a5;</i></a>
    {{# } else { }}
    <span>-</span>
    {{# } }}
</script>
<script data-th-inline="none" type="text/javascript">
    layui.use(['dropdown', 'jquery', 'laydate', 'form', 'table', 'febs', 'treeSelect'], function () {
        var $ = layui.jquery,
@@ -96,14 +84,13 @@
            tableIns = febs.table.init({
                elem: $view.find('table'),
                id: 'transferTable',
                url: ctx + 'member/transferList',
                url: ctx + 'member/memberNodeList',
                cols: [[
                    {field: 'address', title: '地址', minWidth: 130},
                    {field: 'amount', title: '金额(USDT)', minWidth: 130},
                    {field: 'chainType', title: '链', minWidth: 80},
                    {field: 'hash', title: '交易hash', minWidth: 180},
                    {field: 'countFund', title: '轮数', minWidth: 180},
                    {field: 'type', title: '星团等级', minWidth: 130},
                    {field: 'amount', title: '金额', minWidth: 80},
                    {field: 'createTime', title: '创建时间', minWidth: 130},
                    {title: '操作', toolbar: '#transfer-option', minWidth: 140}
                ]]
            });
        }