From 58365e19449f21f8072e821521116164d0c722ae Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 22 Aug 2022 10:07:11 +0800
Subject: [PATCH] 20220822

---
 src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html |   60 +++++++++++++++++++++++++++++++++++++++++++-----------------
 1 files changed, 43 insertions(+), 17 deletions(-)

diff --git a/src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html b/src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html
index 7583fa5..643a214 100644
--- a/src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html
+++ b/src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html
@@ -14,7 +14,7 @@
                                     </div>
                                     <div class="layui-inline">
                                         <div class="layui-input-inline">
-                                            <input type="text" placeholder="手机号/邮箱/邀请码" name="account" autocomplete="off" class="layui-input">
+                                            <input type="text" placeholder="手机号/邀请码" name="account" autocomplete="off" class="layui-input">
                                         </div>
                                     </div>
                                     <div class="layui-inline">
@@ -27,19 +27,19 @@
                                             </select>
                                         </div>
                                     </div>
-                                    <div class="layui-inline">
-                                        <label class="layui-form-label layui-form-label-sm">会员类型</label>
-                                        <div class="layui-input-inline">
-                                            <select name="level">
-                                                <option value="">请选择</option>
-                                                <option value="FIRST_LEVEL">普通会员</option>
-                                                <option value="SECOND_LEVEL">一星</option>
-                                                <option value="THIRD_LEVEL">二星</option>
-                                                <option value="FOUR_LEVEL">三星</option>
-                                                <option value="FIFTH_LEVEL">四星</option>
-                                            </select>
-                                        </div>
-                                    </div>
+<!--                                    <div class="layui-inline">-->
+<!--                                        <label class="layui-form-label layui-form-label-sm">会员类型</label>-->
+<!--                                        <div class="layui-input-inline">-->
+<!--                                            <select name="level">-->
+<!--                                                <option value="">请选择</option>-->
+<!--                                                <option value="FIRST_LEVEL">普通会员</option>-->
+<!--                                                <option value="SECOND_LEVEL">一星</option>-->
+<!--                                                <option value="THIRD_LEVEL">二星</option>-->
+<!--                                                <option value="FOUR_LEVEL">三星</option>-->
+<!--                                                <option value="FIFTH_LEVEL">四星</option>-->
+<!--                                            </select>-->
+<!--                                        </div>-->
+<!--                                    </div>-->
                                 </div>
                             </div>
                             <div class="layui-col-md2 layui-col-sm12 layui-col-xs12 table-action-area">
@@ -150,6 +150,18 @@
                     }
                 });
             }
+
+            if (layEvent === 'addLeader') {
+                febs.modal.open( '团长新增', 'modules/leader/addLeader/' + data.id, {
+                    btn: ['提交', '取消'],
+                    yes: function (index, layero) {
+                        $('#user-addLeader').find('#submit').trigger('click');
+                    },
+                    btn2: function () {
+                        layer.closeAll();
+                    }
+                });
+            }
             if (layEvent === 'moneyFlow') {
                 febs.modal.open( '用户资金流水', 'modules/mallMember/moneyFlow/' + data.id, {
                     maxmin: true,
@@ -246,13 +258,27 @@
                                 return ''
                             }
                         }, minWidth: 100,align:'center'},
+                    {field: 'leaderState', title: '是否是团长',
+                        templet: function (d) {
+                            if (d.leaderState === 1) {
+                                return '<span style="color:green;">团长</span>'
+                            }else if (d.leaderState === 3) {
+                                return '<span">申请中</span>'
+                            }else{
+                                return '<span">普通用户</span>'
+                            }
+                        }, minWidth: 100,align:'center'},
                     // {field: 'accountStatus', title: '账号状态', templet: '#switchStatus', minWidth: 100,align:'center'},
                     {field: 'createdTime', title: '注册时间', minWidth: 180,align:'center'},
                     {title: '操作',
                         templet: function (d) {
-                        // '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="see" shiro:hasPermission="user:update">详情</button>'
+                        if(d.leaderState === 1 || d.leaderState === 3){
                             return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="moneyFlow" shiro:hasPermission="user:update">资金流水</button>'
-                             // + '<button class="layui-btn layui-btn-normal layui-btn-xs" type="button" lay-event="updateReferer">修改推荐人</button>'
+                        }else{
+                            return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="moneyFlow" shiro:hasPermission="user:update">资金流水</button>'
+                            + '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="addLeader" shiro:hasPermission="user:update">设置为团长</button>'
+                        }
+
                         },minWidth: 200,align:'center', fixed:"right"}
                 ]]
             });
@@ -355,7 +381,7 @@
                 name: $searchForm.find('input[name="name"]').val().trim(),
                 account: $searchForm.find('input[name="account"]').val().trim(),
                 accountStatus: $searchForm.find("select[name='accountStatus']").val(),
-                level: $searchForm.find("select[name='level']").val(),
+                // level: $searchForm.find("select[name='level']").val(),
             };
         }
 

--
Gitblit v1.9.1