2018-06-03 17:09:10 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>用户列表</title>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
2018-06-05 16:18:57 +00:00
|
|
|
<link rel="stylesheet" href="lib/layui/css/layui.css">
|
2019-03-29 15:53:37 +00:00
|
|
|
<link rel="stylesheet" href="css/okadmin.css">
|
2019-03-29 16:23:25 +00:00
|
|
|
<link rel="stylesheet" href="font/iconfont.css">
|
2018-08-03 02:37:52 +00:00
|
|
|
<link rel="stylesheet" href="lib/nprogress/nprogress.css">
|
2018-06-03 17:09:10 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2018-08-03 02:37:52 +00:00
|
|
|
<div class="ok-body">
|
|
|
|
|
<!--面包屑导航区域-->
|
|
|
|
|
<div class="ok-body-breadcrumb">
|
2019-03-31 08:54:23 +00:00
|
|
|
<span class="layui-breadcrumb">
|
|
|
|
|
<a><cite>首页</cite></a>
|
|
|
|
|
<a><cite>常用页面</cite></a>
|
|
|
|
|
<a><cite>用户列表</cite></a>
|
|
|
|
|
</span>
|
2019-02-14 14:43:38 +00:00
|
|
|
<a class="layui-btn layui-btn-sm" href="javascript:location.replace(location.href);" title="刷新">
|
2018-08-03 02:37:52 +00:00
|
|
|
<i class="layui-icon layui-icon-refresh"></i>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<!--模糊搜索区域-->
|
|
|
|
|
<div class="layui-row">
|
|
|
|
|
<form class="layui-form layui-col-md12 ok-search">
|
|
|
|
|
<input class="layui-input" placeholder="开始日期" autocomplete="off" id="startTime">
|
|
|
|
|
<input class="layui-input" placeholder="截止日期" autocomplete="off" id="endTime">
|
|
|
|
|
<input class="layui-input" placeholder="请输入用户名" autocomplete="off">
|
|
|
|
|
<button class="layui-btn" lay-submit="" lay-filter="search">
|
|
|
|
|
<i class="layui-icon layui-icon-search"></i>
|
2018-06-06 05:16:16 +00:00
|
|
|
</button>
|
2018-08-03 02:37:52 +00:00
|
|
|
</form>
|
2018-06-03 17:09:10 +00:00
|
|
|
</div>
|
2018-08-03 02:37:52 +00:00
|
|
|
<!--工具栏-->
|
|
|
|
|
<okToolbar>
|
|
|
|
|
<button class="layui-btn layui-btn-normal" id="batchEnabled">
|
|
|
|
|
<i class="iconfont icon-shangsheng"></i>批量启用
|
|
|
|
|
</button>
|
|
|
|
|
<button class="layui-btn layui-btn-warm" id="batchDisabled">
|
|
|
|
|
<i class="iconfont icon-web-icon-"></i>批量停用
|
|
|
|
|
</button>
|
|
|
|
|
<button class="layui-btn layui-btn-danger" id="batchDel">
|
|
|
|
|
<i class="layui-icon layui-icon-delete"></i>批量删除
|
|
|
|
|
</button>
|
|
|
|
|
<button class="layui-btn" id="addUser">
|
|
|
|
|
<i class="layui-icon"></i>添加用户
|
|
|
|
|
</button>
|
|
|
|
|
<span>共有数据:<i id="countNum"></i> 条</span>
|
|
|
|
|
</okToolbar>
|
|
|
|
|
<!--数据表格-->
|
|
|
|
|
<table class="layui-hide" id="tableId" lay-filter="tableFilter"></table>
|
|
|
|
|
</div>
|
|
|
|
|
<!--js逻辑-->
|
|
|
|
|
<script src="lib/layui/layui.js"></script>
|
|
|
|
|
<script src="lib/nprogress/nprogress.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
NProgress.start();
|
|
|
|
|
window.onload = function () {
|
|
|
|
|
NProgress.done();
|
|
|
|
|
}
|
|
|
|
|
layui.use(['element', 'table', 'form', 'jquery', 'laydate'], function () {
|
|
|
|
|
var element = layui.element;
|
|
|
|
|
var table = layui.table;
|
|
|
|
|
var form = layui.form;
|
|
|
|
|
var $ = layui.jquery;
|
|
|
|
|
var laydate = layui.laydate;
|
|
|
|
|
|
|
|
|
|
laydate.render({
|
|
|
|
|
elem: '#startTime',
|
|
|
|
|
type: "datetime"
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
laydate.render({
|
|
|
|
|
elem: '#endTime',
|
|
|
|
|
type: "datetime"
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
table.render({
|
|
|
|
|
elem: '#tableId',
|
|
|
|
|
url: 'data/user.json',
|
|
|
|
|
limit: 10,
|
|
|
|
|
page: true,
|
|
|
|
|
cols: [[
|
|
|
|
|
{type: 'checkbox'},
|
|
|
|
|
{field: 'id', title: 'ID', width: 80, sort: true},
|
|
|
|
|
{field: 'username', title: '用户名', width: 100},
|
|
|
|
|
{field: 'name', title: '姓名', width: 100},
|
|
|
|
|
{field: 'password', title: '密码', width: 100},
|
|
|
|
|
{field: 'status', title: '状态', width: 85, templet: '#statusTpl'},
|
|
|
|
|
{field: 'role', title: '角色', width: 100, templet: '#roleTpl'},
|
|
|
|
|
{field: 'email', title: '邮箱', width: 200},
|
|
|
|
|
{field: 'createTime', title: '创建时间', width: 200},
|
|
|
|
|
{field: 'logins', title: '登陆次数', width: 100},
|
|
|
|
|
{title: '操作', width: 200, templet: '#operationTpl', align: 'center'}
|
|
|
|
|
]],
|
|
|
|
|
done: function (res, curr, count) {
|
|
|
|
|
$("#countNum").text(count);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
form.on('submit(search)', function () {
|
|
|
|
|
layer.msg('正在查询,请稍后...');
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
table.on('tool(tableFilter)', function (obj) {
|
|
|
|
|
var data = obj.data;
|
|
|
|
|
var layEvent = obj.event;
|
|
|
|
|
if (layEvent === 'edit') {
|
|
|
|
|
layer.open({
|
|
|
|
|
title: '编辑用户',
|
|
|
|
|
type: 2,
|
|
|
|
|
shade: false,
|
|
|
|
|
maxmin: true,
|
|
|
|
|
shade: 0.5,
|
|
|
|
|
area: ['90%', '90%'],
|
|
|
|
|
content: 'user-edit.html',
|
|
|
|
|
zIndex: layer.zIndex,
|
|
|
|
|
end: function () {
|
|
|
|
|
$(".layui-laypage-btn")[0].click();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else if (layEvent === 'del') {
|
|
|
|
|
layer.confirm("确定要删除吗?", {skin: 'layui-layer-lan', icon: 2, title: '提示', anim: 6}, function () {
|
|
|
|
|
layer.msg("操作成功!", {icon: 1, time: 1000});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#batchEnabled").click(function () {
|
|
|
|
|
layer.confirm("确定要批量启用吗?", {skin: 'layui-layer-lan', icon: 3, title: '提示', anim: 1}, function () {
|
|
|
|
|
var checkStatus = table.checkStatus('tableId');
|
|
|
|
|
var rows = checkStatus.data.length;
|
|
|
|
|
if (rows > 0) {
|
|
|
|
|
var idsStr = "";
|
|
|
|
|
for (var i = 0; i < checkStatus.data.length; i++) {
|
|
|
|
|
idsStr += checkStatus.data[i].id + ',';
|
|
|
|
|
}
|
|
|
|
|
console.log("选择的id-->" + idsStr);
|
|
|
|
|
layer.msg("操作成功!", {icon: 1, time: 1000}, function () {
|
|
|
|
|
$(".layui-laypage-btn")[0].click();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
layer.msg('未选择有效数据', {
|
|
|
|
|
offset: 't',
|
|
|
|
|
anim: 6
|
|
|
|
|
});
|
|
|
|
|
}
|
2018-07-10 08:49:07 +00:00
|
|
|
});
|
2018-08-03 02:37:52 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$("#batchDisabled").click(function () {
|
|
|
|
|
layer.confirm("确定要批量停用吗?", {skin: 'layui-layer-lan', icon: 3, title: '提示', anim: 2}, function () {
|
|
|
|
|
var checkStatus = table.checkStatus('tableId');
|
|
|
|
|
var rows = checkStatus.data.length;
|
|
|
|
|
if (rows > 0) {
|
|
|
|
|
var idsStr = "";
|
|
|
|
|
for (var i = 0; i < checkStatus.data.length; i++) {
|
|
|
|
|
idsStr += checkStatus.data[i].id + ',';
|
|
|
|
|
}
|
|
|
|
|
console.log("选择的id-->" + idsStr);
|
|
|
|
|
layer.msg("操作成功!", {icon: 1, time: 1000}, function () {
|
|
|
|
|
$(".layui-laypage-btn")[0].click();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
layer.msg('未选择有效数据', {
|
|
|
|
|
offset: 't',
|
|
|
|
|
anim: 6
|
|
|
|
|
});
|
|
|
|
|
}
|
2018-07-10 08:49:07 +00:00
|
|
|
});
|
2018-08-03 02:37:52 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$("#batchDel").click(function () {
|
|
|
|
|
layer.confirm("确定要批量删除吗?", {skin: 'layui-layer-lan', icon: 2, title: '提示', anim: 6}, function () {
|
|
|
|
|
var checkStatus = table.checkStatus('tableId');
|
|
|
|
|
var rows = checkStatus.data.length;
|
|
|
|
|
if (rows > 0) {
|
|
|
|
|
var idsStr = "";
|
|
|
|
|
for (var i = 0; i < checkStatus.data.length; i++) {
|
|
|
|
|
idsStr += checkStatus.data[i].id + ',';
|
|
|
|
|
}
|
|
|
|
|
console.log("选择的id-->" + idsStr);
|
|
|
|
|
layer.msg("操作成功!", {icon: 1, time: 1000}, function () {
|
|
|
|
|
$(".layui-laypage-btn")[0].click();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
layer.msg('未选择有效数据', {
|
|
|
|
|
offset: 't',
|
|
|
|
|
anim: 6
|
|
|
|
|
});
|
|
|
|
|
}
|
2018-07-10 08:49:07 +00:00
|
|
|
});
|
2018-08-03 02:37:52 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$("#addUser").click(function () {
|
|
|
|
|
layer.open({
|
|
|
|
|
title: '添加用户',
|
|
|
|
|
type: 2,
|
|
|
|
|
shade: false,
|
|
|
|
|
maxmin: true,
|
|
|
|
|
shade: 0.5,
|
|
|
|
|
anim: 4,
|
|
|
|
|
area: ['90%', '90%'],
|
|
|
|
|
content: 'user-add.html',
|
|
|
|
|
zIndex: layer.zIndex,
|
|
|
|
|
// skin: 'layui-layer-molv',
|
|
|
|
|
end: function () {
|
|
|
|
|
$(".layui-laypage-btn")[0].click();
|
2018-07-10 10:03:55 +00:00
|
|
|
}
|
|
|
|
|
});
|
2018-06-05 16:18:57 +00:00
|
|
|
})
|
2018-08-03 02:37:52 +00:00
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
<!--模板-->
|
|
|
|
|
<script type="text/html" id="statusTpl">
|
|
|
|
|
<input type="checkbox" name="status" value="{{d.id}}" lay-skin="switch" lay-text="启用|停用" {{ d.status== 0 ? 'checked' : ''}}>
|
|
|
|
|
</script>
|
|
|
|
|
<script type="text/html" id="roleTpl">
|
|
|
|
|
{{ d.role == 0 ? '管理员' : '普通用户 '}}
|
|
|
|
|
</script>
|
|
|
|
|
<script type="text/html" id="operationTpl">
|
|
|
|
|
<a href="javascript:;" title="编辑" lay-event="edit"><i class="layui-icon"></i></a>
|
|
|
|
|
<a href="javascript:;" title="删除" lay-event="del"><i class="layui-icon"></i></a>
|
|
|
|
|
</script>
|
2018-06-03 17:09:10 +00:00
|
|
|
</body>
|
2019-02-14 14:43:38 +00:00
|
|
|
</html>
|