From cedd63e6a0275eb7b32f10ab9b2bc22e30fb42c2 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 05 Sep 2022 10:42:25 +0800
Subject: [PATCH] 20220902

---
 src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html |   63 ++++++++++++++++++++++++++++++-
 1 files changed, 61 insertions(+), 2 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 305289e..2dad877 100644
--- a/src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html
+++ b/src/main/resources/templates/febs/views/modules/mallMember/mallMemberList.html
@@ -27,6 +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>
                             </div>
                             <div class="layui-col-md2 layui-col-sm12 layui-col-xs12 table-action-area">
@@ -58,6 +71,20 @@
     <input type="checkbox" value={{d.id}} lay-text="正常|禁用" checked lay-skin="switch" lay-filter="switchStatus">
     {{# } else { }}
     <input type="checkbox" value={{d.id}} lay-text="正常|禁用" lay-skin="switch" lay-filter="switchStatus">
+    {{# } }}
+</script>
+<script type="text/html" id="switchStoreMaster">
+    {{# if(d.storeMaster === 1) { }}
+    <input type="checkbox" value={{d.id}} lay-text="是|否" checked lay-skin="switch" lay-filter="switchStoreMaster">
+    {{# } else { }}
+    <input type="checkbox" value={{d.id}} lay-text="是|否" lay-skin="switch" lay-filter="switchStoreMaster">
+    {{# } }}
+</script>
+<script type="text/html" id="switchDirector">
+    {{# if(d.director === 1) { }}
+    <input type="checkbox" value={{d.id}} lay-text="是|否" checked lay-skin="switch" lay-filter="switchDirector">
+    {{# } else { }}
+    <input type="checkbox" value={{d.id}} lay-text="是|否" lay-skin="switch" lay-filter="switchDirector">
     {{# } }}
 </script>
 <style>
@@ -155,6 +182,19 @@
             });
         }
 
+        function changeIdentityYes(type, id) {
+            febs.get(ctx + 'admin/mallMember/changeIdentityYes/' + type + "/" + id, null, function () {
+                febs.alert.success('设置成功');
+                $query.click();
+            });
+        }
+        function changeIdentityNo(type, id) {
+            febs.get(ctx + 'admin/mallMember/changeIdentityNo/' + type + "/" + id, null, function () {
+                febs.alert.success('设置成功');
+                $query.click();
+            });
+        }
+
         function resetPwd(id, type) {
             febs.post(ctx + 'admin/mallMember/resetPwdNew/' + type + "/"+ id, null, function () {
                 febs.alert.success('重置成功');
@@ -186,14 +226,16 @@
                 cols: [[
                     {type: 'checkbox'},
                     {field: 'phone', title: '账号', minWidth: 150,align:'left'},
-                    {field: 'bindPhone', title: '手机号', minWidth: 150,align:'left'},
                     {field: 'name', title: '名称', minWidth: 100,align:'left'},
+                    {field: 'inviteId', title: '邀请码', minWidth: 100,align:'left'},
                     {field: 'balance', title: '余额', minWidth: 100,align:'left'},
                     {field: 'score', title: '赠送积分', minWidth: 100,align:'left'},
                     {field: 'prizeScore', title: '竞猜积分', minWidth: 100,align:'left'},
-                    {field: 'inviteId', title: '邀请码', minWidth: 100,align:'left'},
+                    {field: 'commission', title: '佣金', minWidth: 100,align:'left'},
                     {field: 'referrerName', title: '推荐人', minWidth: 100,align:'left'},
                     {field: 'levelName', title: '会员类型', minWidth: 100,align:'left'},
+                    {field: 'storeMaster', title: '店长', templet:'#switchStoreMaster', minWidth: 100},
+                    {field: 'director', title: '总监', templet:'#switchDirector', minWidth: 100},
                     {field: 'accountType', title: '账号类型',
                         templet: function (d) {
                             if (d.accountType === 2) {
@@ -313,6 +355,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(),
             };
         }
 
@@ -323,5 +366,21 @@
                 closeAccount(data.value);
             }
         })
+
+        form.on('switch(switchStoreMaster)', function (data) {
+            if (data.elem.checked) {
+                changeIdentityYes(2, data.value);
+            } else {
+                changeIdentityNo(2, data.value);
+            }
+        })
+
+        form.on('switch(switchDirector)', function (data) {
+            if (data.elem.checked) {
+                changeIdentityYes(1, data.value);
+            } else {
+                changeIdentityNo(1, data.value);
+            }
+        })
     })
 </script>
\ No newline at end of file

--
Gitblit v1.9.1