<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>后台管理系统</title> <meta name="renderer" content="webkit"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <link rel="shortcut icon" th:href="@{/images/logo.jpg}"/> <link rel="stylesheet" th:href="@{/js/layui/css/layui.css}"> <link rel="stylesheet" th:href="@{/js/layui/css/admin.css}"> <link rel="stylesheet" th:href="@{/js/layui/css/my.css}"> <script type="text/javascript" th:src="@{/js/jquery-3.3.1.min.js}"></script> <script th:src="@{/js/layui/layui.js}" charset="utf-8"></script> <style type="text/css"> .layui-table-cell { height: auto !important; } .layui-table img { max-width: 100px } </style> </head> <body> <div class="layui-fluid"> <div class="layui-card"> <div class="layui-form layui-card-header layuiadmin-card-header-auto" id="searchdiv"> <div class="layui-form-item"> <div class="layui-inline"> <label class="layui-form-label">用户昵称</label> <div class="layui-input-block"> <input type="text" name="swxnick" class="layui-input" placeholder="用户昵称"> </div> </div> <div class="layui-inline"> <button class="layui-btn layuiadmin-button-btn" lay-submit lay-filter="The-search"> <i class="layui-icon layui-icon-search layuiadmin-button-btn" title="搜索"> </i> </button> <button class="layui-btn layuiadmin-button-btn" onclick="javascript:location.replace(location.href);"> <i class="layui-icon layui-icon-refresh-3 layuiadmin-button-btn" title="刷新"> </i> </button> </div> </div> </div> </div> <div class="layui-card-body"> <table class="layui-hide" id="tableId" lay-filter="tableId"></table> </div> </div> </div> <script type="text/html" id="swximgurl"> {{#if (d.swximgurl !=null && d.swximgurl !='') { }} <img src="{{d.swximgurl }}"> {{# }else if(d.swximgurl ==null || d.swximgurl ==''){ }} <span>无</span> {{# } }} </script> <script type="text/html" id="table-handle"> <i class="layui-icon layui-icon-user" lay-event="setVip" title="积分"></i> <!--<i class="layui-icon layui-icon-edit" lay-event="edit" title="编辑"></i>--> </script> <script type="text/html" id="iroleid"> {{#if (d.iroleid == 10) { }} <span>普通用户</span> {{# }else if(d.iroleid == 20){ }} <span>会员</span> {{# } }} </script> <script type="text/html" id="ilevel"> {{#if (d.ilevel == 10) { }} <span>初级会员</span> {{# }else if(d.ilevel == 20){ }} <span>中级会员</span> {{# }else if(d.ilevel == 30){ }} <span>高级会员</span> {{# } }} </script> <script> var field = {}; layui.use(['table', 'form'], function () { var form = layui.form, table = layui.table; //监听搜索 form.on('submit(The-search)', function (data) { field = data.field; //执行重载 // console.log(field) table.reload('tableId', { where: field , page: { curr: 1 } }); }); table.render({ elem: '#tableId' , url: 'findPageList' , where: field , method: 'post' ,contentType: "application/json" // 内容编码, json格式 , height: 500 , toolbar: '#toolbarUtil' //开启头部工具栏,并为其绑定左侧模板 , defaultToolbar: ['filter'] , cellMinWidth: 20 //全局定义常规单元格的最小宽度,layui 2.2.1 新增 , skin: 'line ' //表格风格 line (行边框风格)row (列边框风格)nob (无边框风格) , even: true //隔行换色 , limit: 20 //每页默认显示的数量 , page:true ,request: { pageName: "curpage", // 页码的参数名称,默认:page limitName: "pagesize" // 每页数据量的参数名,默认:limit } ,response: { statusName: "code", // 规定数据状态的字段名称,默认:code statusCode: 100, // 规定成功的状态码,默认:0 msgName: "msg", // 规定状态信息的字段名称,默认:msg countName: "count", // 规定数据总数的字段名称,默认:count dataName: "data" // 规定数据列表的字段名称,默认:data } ,parseData: function(res) { // res 即为原始返回的数据 return { "code": res.code, // 解析接口状态 "msg": res.desc, // 解析提示文本 "count": res.data.pageinfo.totalRecords, // 解析数据长度 "data": res.data.items // 解析数据列表 }; } , limits: [10, 20, 50, 100] //每页条数的选择项,默认:[10,20,30,40,50,60,70,80,90]。 , cols: [ [ {type: 'checkbox', field: 'id'} , {field: 'swxnick', width: 100, title: '用户昵称'} , {field: 'swximgurl', title: '用户头像', toolbar: '#swximgurl'} // , {field: 'userState', width: 80, title: '状态', toolbar: '#userState'} , {field: 'sphone', title: '手机号'} , {field: 'iroleid', title: '用户角色', toolbar: '#iroleid'} , {field: 'integral', title: '积分'} , {field: 'tcreatetime', title: '创建时间'} , {field: '', width: 100, title: '操作', toolbar: '#table-handle', fixed: 'right'} ] ] , done: function (res, curr, count) { $(".layui-table-main tr").each(function (index, val) { $($(".layui-table-fixed-l .layui-table-body tbody tr")[index]).height($(val).height()); $($(".layui-table-fixed-r .layui-table-body tbody tr")[index]).height($(val).height()); }); $(".layui-table-main tr").each(function (index, val) { $(".layui-table-fixed").each(function () { $($(this).find(".layui-table-body tbody tr")[index]).height($(val).height()); }); }); $(".layui-table-main tr").each(function (index, val) { $(".layui-table-fixed").each(function () { $($(this).find(".layui-table-body tbody th")[index]).height($(val).height()); }); }); } }); //头工具栏事件 table.on('toolbar(tableId)', function (obj) { var checkStatus = table.checkStatus(obj.config.id); switch (obj.event) { case 'distributor': var w = ($(window).width() * 0.4); var h = ($(window).height() * 0.5); layer.open({ type: 2 , title: '分销设置' , content: 'toDistributor' , area: [w + 'px', h + 'px'] , fix: false //不固定 , maxmin: true , shadeClose: true , shade: 0.4 , btn: ['保存', '关闭'] , yes: function (index, layero) { var body = layer.getChildFrame('body', index); //得到iframe页面层的BODY var iframeBtn = body.find('#saveBtn');//得到iframe页面层的提交按钮 iframeBtn.click();//模拟iframe页面层的提交按钮点击 } }); break; case 'del': var data = checkStatus.data; var id = ''; if (data.length > 0) { for (var j = 0; j < data.length; j++) { id = id + "," + data[j].goodsId; } } else { layer.msg("请至少选择一条数据!"); return false; } layer.confirm('确定要彻底删除选中的数据吗?', function (index) { $.ajax({ url: "changeDeleteState", data: {"id": id}, type: "POST", dataType: "json", success: function (result) { if (result.code == 100) { layer.msg(result.msg, {icon: 6, time: 1000}, function () { layer.close(index); table.reload('tableId'); }); } else { layer.msg(result.msg, {icon: 5}); } } }); }); break; } ; }); //监听行工具事件 table.on('tool(tableId)', function (obj) { var data = obj.data; var id = data.id; var name = data.srealname; //console.log(obj) //启用 if (obj.event === 'distributor') { layer.confirm('确定更改' + name + '状态吗?', function (index) { $.ajax({ url: "updateUserRole", data: {"userId": id, "userRole": "1"}, type: "POST", dataType: "json", success: function (result) { if (result.code == 100) { layer.msg(result.msg, {icon: 6, time: 1000}, function () { // document.location.href = "list"; // layer.close(index); table.reload('tableId'); }); } else { layer.msg(result.msg, {icon: 5}); } } }) }) } else if (obj.event === 'ordinary') { layer.confirm('确定更改' + name + '状态吗?', function (index) { $.ajax({ url: "updateUserRole", data: {"userId": id, "userRole": "0"}, type: "POST", dataType: "json", success: function (result) { if (result.code == 100) { layer.msg(result.msg, {icon: 6, time: 1000}, function () { // document.location.href = "list"; // layer.close(index); table.reload('tableId'); }); } else { layer.msg(result.msg, {icon: 5}); } } }) }) } else if (obj.event === 'setVip') { var id = obj.data.id; var w = ($(window).width() * 0.6); var h = ($(window).height() * 0.6); layer.open({ type: 2 , title: '增加积分' , content: 'setVip?id=' + id , area: [w + 'px', h + 'px'] , fix: false //不固定 , maxmin: true , shadeClose: true , shade: 0.4 , btn: ['保存', '关闭'] , yes: function (index, layero) { var body = layer.getChildFrame('body', index); //得到iframe页面层的BODY var iframeBtn = body.find('#saveBtn');//得到iframe页面层的提交按钮 iframeBtn.click();//模拟iframe页面层的提交按钮点击 } }); } }); }); </script> </body> </html>