|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
|
|
|
|
<head>
|
|
|
|
|
<th:block th:include="include :: header('用户统计列表')" />
|
|
|
|
|
<th:block th:include="include :: layout-latest-css" />
|
|
|
|
|
<th:block th:include="include :: ztree-css" />
|
|
|
|
|
</head>
|
|
|
|
|
<body class="gray-bg">
|
|
|
|
|
<div class="ui-layout-center">
|
|
|
|
|
<div class="container-div">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-sm-12 search-collapse">
|
|
|
|
|
<form id="user-form">
|
|
|
|
|
<input type="hidden" id="deptId" name="deptId">
|
|
|
|
|
<input type="hidden" id="parentId" name="parentId">
|
|
|
|
|
<div class="select-list">
|
|
|
|
|
<ul>
|
|
|
|
|
<li>
|
|
|
|
|
人员名称:<input type="text" name="loginName"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
用户状态:<select name="status" th:with="type=${@dict.getType('sys_normal_disable')}">
|
|
|
|
|
<option value="">所有</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="select-time">
|
|
|
|
|
<label>创建时间: </label>
|
|
|
|
|
<input type="text" class="time-input" id="startTime" placeholder="开始时间" name="params[beginTime]"/>
|
|
|
|
|
<span>-</span>
|
|
|
|
|
<input type="text" class="time-input" id="endTime" placeholder="结束时间" name="params[endTime]"/>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
|
|
|
|
<a class="btn btn-warning btn-rounded btn-sm" onclick="resetPre()"><i class="fa fa-refresh"></i> 重置</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="btn-group-sm" id="toolbar" role="group">
|
|
|
|
|
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:usernum:export">
|
|
|
|
|
<i class="fa fa-download"></i> 导出
|
|
|
|
|
</a>
|
|
|
|
|
<a class="btn btn-warning" onclick="$.table.print()" shiro:hasPermission="system:usernum:print">
|
|
|
|
|
<i class="fa fa-download"></i> 打印
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-sm-12 select-table table-striped">
|
|
|
|
|
<table id="bootstrap-table"></table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<th:block th:include="include :: footer" />
|
|
|
|
|
<th:block th:include="include :: layout-latest-js" />
|
|
|
|
|
<th:block th:include="include :: ztree-js" />
|
|
|
|
|
<script th:inline="javascript">
|
|
|
|
|
var detailFlag = [[${@permission.hasPermi('system:usernum:detail')}]];
|
|
|
|
|
var prefix = ctx + "system/usernum";
|
|
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
|
var panehHidden = false;
|
|
|
|
|
if ($(this).width() < 769) {
|
|
|
|
|
panehHidden = true;
|
|
|
|
|
}
|
|
|
|
|
$('body').layout({ initClosed: panehHidden, west__size: 185 });
|
|
|
|
|
// 回到顶部绑定
|
|
|
|
|
if ($.fn.toTop !== undefined) {
|
|
|
|
|
var opt = {
|
|
|
|
|
win:$('.ui-layout-center'),
|
|
|
|
|
doc:$('.ui-layout-center')
|
|
|
|
|
};
|
|
|
|
|
$('#scroll-up').toTop(opt);
|
|
|
|
|
}
|
|
|
|
|
queryUserList();
|
|
|
|
|
queryDeptTree();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
function queryUserList() {
|
|
|
|
|
var options = {
|
|
|
|
|
url: prefix + "/list",
|
|
|
|
|
createUrl: prefix + "/add",
|
|
|
|
|
detail: prefix + "/detail/{id}",
|
|
|
|
|
removeUrl: prefix + "/remove",
|
|
|
|
|
exportUrl: prefix + "/export",
|
|
|
|
|
importUrl: prefix + "/importData",
|
|
|
|
|
importTemplateUrl: prefix + "/importTemplate",
|
|
|
|
|
sortName: "createTime",
|
|
|
|
|
sortOrder: "desc",
|
|
|
|
|
modalName: "用户",
|
|
|
|
|
columns: [{
|
|
|
|
|
checkbox: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'userName',
|
|
|
|
|
title: '用户名称'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'dept.deptName',
|
|
|
|
|
title: '所在单位'
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
field: 'phonenumber',
|
|
|
|
|
title: '手机'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'shemichengdu',
|
|
|
|
|
title: '涉密程度'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'politics',
|
|
|
|
|
title: '政治面貌'
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
title: '用户状态',
|
|
|
|
|
align: 'center',
|
|
|
|
|
formatter: function (value, row, index) {
|
|
|
|
|
return statusTools(row);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'examine',
|
|
|
|
|
title: '审核状态'
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'startdate',
|
|
|
|
|
title: '入职日期',
|
|
|
|
|
sortable: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '操作',
|
|
|
|
|
align: 'center',
|
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
|
var actions = [];
|
|
|
|
|
actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.userId + '\')"><i class="fa fa-edit"></i>详情</a> ');
|
|
|
|
|
}
|
|
|
|
|
}]
|
|
|
|
|
};
|
|
|
|
|
$.table.init(options);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function queryDeptTree()
|
|
|
|
|
{
|
|
|
|
|
var url = ctx + "system/user/deptTreeData";
|
|
|
|
|
var options = {
|
|
|
|
|
url: url,
|
|
|
|
|
expandLevel: 2,
|
|
|
|
|
onClick : zOnClick
|
|
|
|
|
};
|
|
|
|
|
$.tree.init(options);
|
|
|
|
|
|
|
|
|
|
function zOnClick(event, treeId, treeNode) {
|
|
|
|
|
$("#deptId").val(treeNode.id);
|
|
|
|
|
$("#parentId").val(treeNode.pId);
|
|
|
|
|
$.table.search();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$('#btnExpand').click(function() {
|
|
|
|
|
$._tree.expandAll(true);
|
|
|
|
|
$(this).hide();
|
|
|
|
|
$('#btnCollapse').show();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#btnCollapse').click(function() {
|
|
|
|
|
$._tree.expandAll(false);
|
|
|
|
|
$(this).hide();
|
|
|
|
|
$('#btnExpand').show();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#btnRefresh').click(function() {
|
|
|
|
|
queryDeptTree();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
/* 自定义重置-表单重置/隐藏框/树节点选择色/搜索 */
|
|
|
|
|
function resetPre() {
|
|
|
|
|
resetDate();
|
|
|
|
|
$("#user-form")[0].reset();
|
|
|
|
|
$("#deptId").val("");
|
|
|
|
|
$("#parentId").val("");
|
|
|
|
|
$(".curSelectedNode").removeClass("curSelectedNode");
|
|
|
|
|
$.table.search();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 用户管理-部门 */
|
|
|
|
|
function dept() {
|
|
|
|
|
var url = ctx + "system/dept";
|
|
|
|
|
$.modal.openTab("部门管理", url);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 用户状态显示 */
|
|
|
|
|
function statusTools(row) {
|
|
|
|
|
if (row.status == 1) {
|
|
|
|
|
return '<i class=\"fa fa-toggle-off text-info fa-2x\" onclick="enable(\'' + row.userId + '\')"></i> ';
|
|
|
|
|
} else {
|
|
|
|
|
return '<i class=\"fa fa-toggle-on text-info fa-2x\" onclick="disable(\'' + row.userId + '\')"></i> ';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
<!-- 导入区域 -->
|
|
|
|
|
<script id="importTpl" type="text/template">
|
|
|
|
|
<form enctype="multipart/form-data" class="mt20 mb10">
|
|
|
|
|
<div class="col-xs-offset-1">
|
|
|
|
|
<input type="file" id="file" name="file"/>
|
|
|
|
|
<div class="mt10 pt5">
|
|
|
|
|
<input type="checkbox" id="updateSupport" name="updateSupport" title="如果登录账户已经存在,更新这条数据。"> 是否更新已经存在的用户数据
|
|
|
|
|
<a onclick="$.table.importTemplate()" class="btn btn-default btn-xs"><i class="fa fa-file-excel-o"></i> 下载模板</a>
|
|
|
|
|
</div>
|
|
|
|
|
<font color="red" class="pull-left mt10">
|
|
|
|
|
提示:仅允许导入“xls”或“xlsx”格式文件!
|
|
|
|
|
</font>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</script>
|
|
|
|
|
</html>
|