xiaoyong931011
2022-11-18 4ccaaf3dccbd8ad40f093dab238f51d350f15a43
src/main/resources/templates/febs/views/dapp/member.html
@@ -177,6 +177,12 @@
        table.on('tool(memberTable)', function (obj) {
            var data = obj.data,
                layEvent = obj.event;
            if (layEvent === 'teamInfo') {
                febs.modal.open( '团队详情', 'dappView/teamInfo/' + data.id, {
                    maxmin: true,
                });
            }
            if (layEvent === 'resetTransferCode') {
                febs.modal.confirm('资金密码', '是否重置资金密码为:123456?', function () {
                    resetTransferCode(data.id);
@@ -192,6 +198,17 @@
                    btn: ['提交', '取消'],
                    yes: function (index, layero) {
                        $('#payUsdt-update').find('#submit').trigger('click');
                    },
                    btn2: function () {
                        layer.closeAll();
                    }
                });
            }
            if (layEvent === 'identitySet') {
                febs.modal.open('设置会员等级', 'dappView/identitySet/' + data.id, {
                    btn: ['提交', '取消'],
                    yes: function (index, layero) {
                        $('#identitySet-update').find('#submit').trigger('click');
                    },
                    btn2: function () {
                        layer.closeAll();
@@ -295,9 +312,13 @@
                id: 'memberTable',
                url: ctx + 'member/list',
                cols: [[
                    {type: 'checkbox'},
                    {type: 'numbers'},
                    {field: 'username', title: '用户名', minWidth: 130},
                    // {type: 'checkbox'},
                    // {type: 'numbers'},
                    // {field: 'username', title: '用户名', minWidth: 120},
                    {title: '用户名',
                        templet: function (d) {
                                return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="teamInfo" shiro:hasPermission="teamInfo:update"><span>'+d.username+'</span></button>'
                        },minWidth: 130,align:'center'},
                    {field: 'identity', title: '会员',
                        templet: function (d) {
                            if (d.identity === 'LEVEL_TM') {
@@ -307,14 +328,31 @@
                            }else{
                                return ''
                            }
                        }, minWidth: 100, align: 'center'},
                    {field: 'identity', title: '等级', minWidth: 100, align: 'center'},
                    // {field: 'address', title: '地址', minWidth: 130},
                    // {title: '余额(USDT)', templet: '#balance', minWidth: 120},
                    // {title: '授权列表', templet: '#approve-list', minWidth: 110},
                    // {field: 'chainType', title: '所属链', minWidth: 130},
                    {field: 'inviteId', title: '邀请码', minWidth: 130},
                    {field: 'refererId', title: '上级邀请码', minWidth: 130},
                        }, minWidth: 80, align: 'center'},
                    // {field: 'identity', title: '等级',
                    //     templet: function (d) {
                    //         if (d.identity === 'LEVEL_TM') {
                    //             return '<span></span>'
                    //         } else if (d.identity != 'LEVEL_TM' && d.identity != '' && d.identity != null) {
                    //             return '<span>'+d.identity+'</span>'
                    //         }else{
                    //             return ''
                    //         }
                    //     }, minWidth: 130, align: 'center'},
                    {title: '会员等级',
                        templet: function (d) {
                            if(d.identity === 'LEVEL_TM'){
                                return '<span>'+d.identity+'</span>'
                            }else{
                                return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="identitySet" shiro:hasPermission="user:update"><span>'+d.identity+'</span></button>'
                            }
                        },minWidth: 130,align:'center'},
                    {field: 'totalAmount', title: '总金额', minWidth: 100},
                    {field: 'availableAmount', title: '可用余额', minWidth: 100},
                    {field: 'frozenAmount', title: '冻结金额', minWidth: 100},
                    {field: 'inviteId', title: '邀请码', minWidth: 100},
                    {field: 'refererName', title: '上级', minWidth: 130},
                    {field: 'createTime', title: '创建时间', minWidth: 180},
                    ,{field: 'accountStatus', title: '账户状态',templet: '#isAccountStatus', minWidth: 180},
                    // {title: '账户状态', templet: '#user-status', minWidth: 120},
@@ -330,7 +368,7 @@
                        }else{
                            return ''
                        }
                        },minWidth: 180,align:'center'},
                        },minWidth: 130,align:'center'},
                    {title: '重置资金密码',
                        templet: function (d) {
                            if(d.identity != 'LEVEL_TM' && d.identity != '' && d.identity != null){
@@ -338,11 +376,11 @@
                            }else{
                                return ''
                            }
                        },minWidth: 180,align:'center'},
                        },minWidth: 130,align:'center'},
                    {title: '后台拨付',
                        templet: function (d) {
                                return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="payUsdt" shiro:hasPermission="user:update">拨付</button>'
                        },minWidth: 180,align:'center'},
                        },minWidth: 130,align:'center'},
                ]]
            });
        }