Helius
2020-07-13 2f754bca02fd68505a55083a9f921f3a2191660f
modify
2 files modified
3 ■■■■■ changed files
src/main/resources/mapper/modules/MemberMapper.xml 2 ●●●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/agent/member.html 1 ●●●● patch | view | raw | blame | history
src/main/resources/mapper/modules/MemberMapper.xml
@@ -6,6 +6,7 @@
    <select id="selectMemberListInPage" resultType="com.xcong.excoin.modules.agent.entity.MemberEntity">
        select
            a.*,
            CONCAT(e.first_name, e.second_name) account,
            b.total_balance contractTotal,
            c.available_balance coinTotal,
            d.total_balance agentTotal
@@ -13,6 +14,7 @@
        left join member_wallet_contract b on a.id=b.member_id
        left join member_wallet_coin c on a.id=c.member_id and c.wallet_code='USDT'
        left join member_wallet_agent d on a.id=d.member_id
        left join member_authentication e on a.id=e.member_id
        <where>
            <if test="record != null">
                <if test="record.inviteId !=null and record.inviteId!=''">
src/main/resources/templates/febs/views/modules/agent/member.html
@@ -279,6 +279,7 @@
                url: ctx + 'member/getList',
                cols: [[
                    {type: 'checkbox'},
                    {field: 'account', title: '用户姓名', minWidth: 150, align: 'center'},
                    {field: 'phone', title: '手机号', minWidth: 165},
                    {field: 'email', title: '邮箱', minWidth: 200},
                    {field: 'inviteId', title: '邀请码'},