You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
177 lines
7.1 KiB
177 lines
7.1 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>用户管理</title>
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='lib/layui-v2.5.5/css/layui.css') }}" media="all">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/public.css') }}" media="all">
|
|
</head>
|
|
<body>
|
|
<div class="layuimini-container">
|
|
<div class="layuimini-main">
|
|
|
|
<fieldset class="table-search-fieldset">
|
|
<legend>搜索信息</legend>
|
|
<div style="margin: 10px 10px 10px 10px">
|
|
<form class="layui-form layui-form-pane" action="">
|
|
<div class="layui-form-item">
|
|
<div class="layui-inline">
|
|
<label class="layui-form-label">用户名</label>
|
|
<div class="layui-input-inline">
|
|
<input type="text" name="username" autocomplete="off" class="layui-input">
|
|
</div>
|
|
</div>
|
|
<div class="layui-inline">
|
|
<label class="layui-form-label">手机号</label>
|
|
<div class="layui-input-inline">
|
|
<input type="text" name="phone" autocomplete="off" class="layui-input">
|
|
</div>
|
|
</div>
|
|
<div class="layui-inline">
|
|
<label class="layui-form-label">邮箱</label>
|
|
<div class="layui-input-inline">
|
|
<input type="text" name="email" autocomplete="off" class="layui-input">
|
|
</div>
|
|
</div>
|
|
<div class="layui-inline">
|
|
<button type="submit" class="layui-btn layui-btn-primary" lay-submit
|
|
lay-filter="data-search-btn"><i class="layui-icon"></i> 搜 索
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<script type="text/html" id="toolbaruser">
|
|
<div class="layui-btn-container">
|
|
<button class="layui-btn layui-btn-normal layui-btn-sm data-add-btn" lay-event="add"> 添加用户</button>
|
|
</div>
|
|
</script>
|
|
|
|
<table class="layui-hide" id="usermanager" lay-filter="currentTableFilter"></table>
|
|
|
|
<script type="text/html" id="currentTableBar">
|
|
<a class="layui-btn layui-btn-normal layui-btn-xs data-count-edit" lay-event="edit">编辑</a>
|
|
<a class="layui-btn layui-btn-xs layui-btn-danger data-count-delete" lay-event="delete">删除</a>
|
|
</script>
|
|
|
|
</div>
|
|
</div>
|
|
<script src="{{ url_for('static', filename='lib/layui-v2.5.5/layui.js') }}" charset="utf-8"></script>
|
|
<script>
|
|
layui.use(['form', 'table'], function () {
|
|
var $ = layui.jquery,
|
|
form = layui.form,
|
|
table = layui.table;
|
|
|
|
table.render({
|
|
elem: '#usermanager',
|
|
url: "{{ url_for('api_user_manager') }}",
|
|
toolbar: '#toolbaruser',
|
|
defaultToolbar: ['filter', 'exports', 'print', {
|
|
title: '提示',
|
|
layEvent: 'LAYTABLE_TIPS',
|
|
icon: 'layui-icon-tips'
|
|
}],
|
|
cols: [[
|
|
{field: 'id', width: 80, title: 'ID', sort: true},
|
|
{field: 'username', width: 200, title: '用户名', sort: true},
|
|
{field: 'phone', width: 200, title: '手机号'},
|
|
{field: 'email', width: 250, title: '邮箱', sort: true},
|
|
{field: 'remark', width: 300, title: '备注', sort: true},
|
|
{field: 'login_count', width: 120, title: '登录次数', sort: true},
|
|
{title: '操作', minWidth: 150, toolbar: '#currentTableBar', align: "center"}
|
|
]],
|
|
limits: [10, 20, 40, 60, 80, 100],
|
|
limit: 20,
|
|
page: true,
|
|
skin: 'line'
|
|
});
|
|
|
|
// 监听搜索操作
|
|
form.on('submit(data-search-btn)', function (data) {
|
|
var result = JSON.stringify(data.field);
|
|
//执行搜索重载
|
|
table.reload('currentTableId', {
|
|
page: {
|
|
curr: 1
|
|
}
|
|
, where: {
|
|
searchParams: result
|
|
}
|
|
}, 'data');
|
|
|
|
return false;
|
|
});
|
|
|
|
/**
|
|
* toolbar监听事件
|
|
*/
|
|
table.on('toolbar(currentTableFilter)', function (obj) {
|
|
if (obj.event === 'add') { // 监听添加操作
|
|
var index = layer.open({
|
|
title: '添加用户',
|
|
type: 2,
|
|
shade: 0.2,
|
|
maxmin: true,
|
|
shadeClose: true,
|
|
area: ['100%', '100%'],
|
|
content: "{{ url_for('html_system_useradd') }}",
|
|
});
|
|
$(window).on("resize", function () {
|
|
layer.full(index);
|
|
});
|
|
}
|
|
});
|
|
|
|
//监听表格复选框选择
|
|
table.on('tool(currentTableFilter)', function (obj) {
|
|
var data = obj.data;
|
|
if (obj.event === 'edit') {
|
|
var index = layer.open({
|
|
title: '编辑用户',
|
|
type: 2,
|
|
shade: 0.2,
|
|
maxmin: true,
|
|
shadeClose: true,
|
|
area: ['100%', '100%'],
|
|
content: "{{ url_for('html_system_useredit') }}" + "?username=" + data.username
|
|
});
|
|
$(window).on("resize", function () {
|
|
layer.full(index);
|
|
});
|
|
return false;
|
|
} else if (obj.event === 'delete') {
|
|
layer.confirm('确定删除该用户吗?', function (index) {
|
|
$.ajax({
|
|
url: "{{ url_for('api_user_manager') }}",
|
|
data: JSON.stringify(data),
|
|
contentType: 'application/json;charset=UTF-8',
|
|
dataType: 'json',
|
|
type: 'delete',
|
|
success: function (result) {
|
|
if (result.status_code == 200) {
|
|
layer.alert('删除用户成功!', {title: '提示', icon: 1})
|
|
obj.del();
|
|
layer.close(index);
|
|
} else {
|
|
layer.alert(result.msg, {title: '提示', icon: 2})
|
|
}
|
|
},
|
|
error: function (e) {
|
|
layer.alert(JSON.stringify(e), {title: '提示', icon: 2})
|
|
}
|
|
})
|
|
});
|
|
}
|
|
});
|
|
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html> |