From bd249bac31b096472bd34cebff7223d30cb577b7 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 23 Oct 2023 16:33:21 +0800 Subject: [PATCH] 版本管理 --- src/main/resources/templates/febs/views/modules/chat/userList.html | 106 +++++++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 95 insertions(+), 11 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/chat/userList.html b/src/main/resources/templates/febs/views/modules/chat/userList.html index 2816edb..28748d6 100644 --- a/src/main/resources/templates/febs/views/modules/chat/userList.html +++ b/src/main/resources/templates/febs/views/modules/chat/userList.html @@ -69,6 +69,20 @@ <input type="checkbox" value={{d.userId}} lay-text="是|否" lay-skin="switch" lay-filter="switchIsRobot"> {{# } }} </script> +<script type="text/html" id="switchModelType"> + {{# if(d.modelType === 1) { }} + <input type="checkbox" value={{d.userId}} lay-text="简单模式|困难模式" checked lay-skin="switch" lay-filter="switchModelType"> + {{# } else { }} + <input type="checkbox" value={{d.userId}} lay-text="简单模式|困难模式" lay-skin="switch" lay-filter="switchModelType"> + {{# } }} +</script> +<script type="text/html" id="switchCreateGroup"> + {{# if(d.createGroup === 1) { }} + <input type="checkbox" value={{d.userId}} lay-text="是|否" checked lay-skin="switch" lay-filter="switchCreateGroup"> + {{# } else { }} + <input type="checkbox" value={{d.userId}} lay-text="是|否" lay-skin="switch" lay-filter="switchCreateGroup"> + {{# } }} +</script> <style> .layui-form-onswitch { background-color: #5FB878 !important; @@ -76,7 +90,7 @@ </style> <script type="text/html" id="toolbar"> <div class="layui-btn-container"> - <button class="layui-btn layui-btn-normal layui-btn-sm" type="button" lay-event="registerMember">添加机器人</button> + <button class="layui-btn layui-btn-normal layui-btn-sm" type="button" lay-event="registerMember">添加会员</button> <button class="layui-btn layui-btn-normal layui-btn-sm" type="button" lay-event="balance">拨付余额</button> </div> </script> @@ -96,6 +110,9 @@ tableIns; form.render(); + let currPageUser = 1;//首先默认值为1,防止出错 + //获取当前页 + currPageUser = $view.find(".layui-laypage-em").next().html(); // 表格初始化 initTable(); @@ -110,7 +127,7 @@ $reset.on('click', function () { $searchForm[0].reset(); sortObject.type = 'null'; - tableIns.reload({where: getQueryParams(), page: {curr: 1}, initSort: sortObject}); + tableIns.reload({where: getQueryParams(), page: {curr: currPageUser}, initSort: sortObject}); }); // 获取查询参数 @@ -132,7 +149,7 @@ totalRow: true ,// 开启合计行 cols: [[ {type: 'checkbox'}, - // {field: 'userId', title: '标识', minWidth: 150,align:'left'}, + {field: 'userId', title: '标识', minWidth: 150,align:'left'}, {field: 'nickName', title: '昵称', minWidth: 100,align:'left', totalRowText: '合计:',align:'center'}, {field: 'inviteId', title: '邀请码', minWidth: 100,align:'left',align:'center'}, {field: 'phone', title: '注册号码', minWidth: 150,align:'left',align:'center'}, @@ -140,6 +157,8 @@ {field: 'avaAmount', title: '账户余额', minWidth: 80,align:'left',totalRow: '{{= parseInt(d.avaAmount) }}',align:'center'}, {field: 'status', title: '账号状态', templet: '#switchStatus', minWidth: 80,align:'center'}, {field: 'isRobot', title: '机器人', templet: '#switchIsRobot', minWidth: 80,align:'center'}, + {field: 'modelType', title: '模式', templet: '#switchModelType', minWidth: 80,align:'center'}, + {field: 'createGroup', title: '允许建群', templet: '#switchCreateGroup', minWidth: 80,align:'center'}, {field: 'createTime', title: '注册时间', minWidth: 180,align:'center'}, ]] }); @@ -149,11 +168,24 @@ var data = obj.data, layEvent = obj.event; + // if (layEvent === 'registerMember') { + // febs.get(ctx + 'admin/chat/registerMember/', null, function () { + // febs.alert.success('操作成功'); + // $query.click(); + // }); + // } + if (layEvent === 'registerMember') { - febs.get(ctx + 'admin/chat/registerMember/', null, function () { - febs.alert.success('操作成功'); - $query.click(); - }); + var checkData = table.checkStatus('userChatTable').data; + if (checkData.length <= 0) { + febs.alert.warn('请选择需要的用户'); + return; + } + if (checkData.length > 1) { + febs.alert.warn('请选择一个用户'); + return; + } + registerMember("添加会员", checkData[0].inviteId, 1); } if (layEvent === 'balance') { @@ -170,6 +202,18 @@ } }); + function registerMember(text, inviteId, type) { + febs.modal.open(text, 'modules/chat/mallRegisterMember/'+ inviteId, { + btn: ['提交', '取消'], + yes: function (index, layero) { + $('#chat-register-member').find('#submit').trigger('click'); + }, + btn2: function () { + layer.closeAll(); + } + }); + } + function systemPay(text, userId, type) { febs.modal.open(text, 'modules/chat/mallSystemPay/'+ userId, { btn: ['提交', '取消'], @@ -179,6 +223,46 @@ btn2: function () { layer.closeAll(); } + }); + } + + form.on('switch(switchCreateGroup)', function (data) { + if (data.elem.checked) { + openCreateGroup(data.value); + } else { + closeCreateGroup(data.value); + } + }) + function openCreateGroup(userId) { + febs.get(ctx + 'admin/chat/openCreateGroup/' + userId, null, function () { + febs.alert.success('操作成功'); + $reset.click(); + }); + } + function closeCreateGroup(userId) { + febs.get(ctx + 'admin/chat/closeCreateGroup/' + userId, null, function () { + febs.alert.success('操作成功'); + $reset.click(); + }); + } + + form.on('switch(switchModelType)', function (data) { + if (data.elem.checked) { + openModelType(data.value); + } else { + closeModelType(data.value); + } + }) + function openModelType(userId) { + febs.get(ctx + 'admin/chat/openModelType/' + userId, null, function () { + febs.alert.success('操作成功'); + $reset.click(); + }); + } + function closeModelType(userId) { + febs.get(ctx + 'admin/chat/closeModelType/' + userId, null, function () { + febs.alert.success('操作成功'); + $reset.click(); }); } @@ -192,13 +276,13 @@ function openAccount(userId) { febs.get(ctx + 'admin/chat/openAccount/' + userId, null, function () { febs.alert.success('操作成功'); - $query.click(); + $reset.click(); }); } function closeAccount(userId) { febs.get(ctx + 'admin/chat/closeAccount/' + userId, null, function () { febs.alert.success('操作成功'); - $query.click(); + $reset.click(); }); } @@ -212,13 +296,13 @@ function openSwitchIsRobot(userId) { febs.get(ctx + 'admin/chat/openSwitchIsRobot/' + userId, null, function () { febs.alert.success('操作成功'); - $query.click(); + $reset.click(); }); } function closeSwitchIsRobot(userId) { febs.get(ctx + 'admin/chat/closeSwitchIsRobot/' + userId, null, function () { febs.alert.success('操作成功'); - $query.click(); + $reset.click(); }); } -- Gitblit v1.9.1