|
|
@ -24,7 +24,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="ui-layout-center">
|
|
|
|
<div class="ui-layout-center">
|
|
|
|
<div class="container-div">
|
|
|
|
<div class="container-div">
|
|
|
|
<div class="row">
|
|
|
|
<div class="row">
|
|
|
@ -60,7 +60,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="btn-group-sm" id="toolbar" role="group">
|
|
|
|
<div class="btn-group-sm" id="toolbar" role="group">
|
|
|
|
<a class="btn btn-success" onclick="$.operate.addTab()" shiro:hasPermission="system:user:add">
|
|
|
|
<a class="btn btn-success" onclick="$.operate.addTab()" shiro:hasPermission="system:user:add">
|
|
|
|
<i class="fa fa-plus"></i> 新增
|
|
|
|
<i class="fa fa-plus"></i> 新增
|
|
|
@ -78,14 +78,14 @@
|
|
|
|
<i class="fa fa-download"></i> 导出
|
|
|
|
<i class="fa fa-download"></i> 导出
|
|
|
|
</a>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="col-sm-12 select-table table-striped">
|
|
|
|
<div class="col-sm-12 select-table table-striped">
|
|
|
|
<table id="bootstrap-table"></table>
|
|
|
|
<table id="bootstrap-table"></table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<th:block th:include="include :: footer" />
|
|
|
|
<th:block th:include="include :: footer" />
|
|
|
|
<th:block th:include="include :: layout-latest-js" />
|
|
|
|
<th:block th:include="include :: layout-latest-js" />
|
|
|
|
<th:block th:include="include :: ztree-js" />
|
|
|
|
<th:block th:include="include :: ztree-js" />
|
|
|
@ -140,7 +140,7 @@
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
field: 'userName',
|
|
|
|
field: 'userName',
|
|
|
|
title: '用户名称'
|
|
|
|
title: '人员姓名'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
field: 'dept.deptName',
|
|
|
|
field: 'dept.deptName',
|
|
|
@ -197,7 +197,7 @@
|
|
|
|
};
|
|
|
|
};
|
|
|
|
$.table.init(options);
|
|
|
|
$.table.init(options);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function queryDeptTree()
|
|
|
|
function queryDeptTree()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
var url = ctx + "system/user/deptTreeData";
|
|
|
|
var url = ctx + "system/user/deptTreeData";
|
|
|
@ -207,30 +207,30 @@
|
|
|
|
onClick : zOnClick
|
|
|
|
onClick : zOnClick
|
|
|
|
};
|
|
|
|
};
|
|
|
|
$.tree.init(options);
|
|
|
|
$.tree.init(options);
|
|
|
|
|
|
|
|
|
|
|
|
function zOnClick(event, treeId, treeNode) {
|
|
|
|
function zOnClick(event, treeId, treeNode) {
|
|
|
|
$("#deptId").val(treeNode.id);
|
|
|
|
$("#deptId").val(treeNode.id);
|
|
|
|
$("#parentId").val(treeNode.pId);
|
|
|
|
$("#parentId").val(treeNode.pId);
|
|
|
|
$.table.search();
|
|
|
|
$.table.search();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$('#btnExpand').click(function() {
|
|
|
|
$('#btnExpand').click(function() {
|
|
|
|
$._tree.expandAll(true);
|
|
|
|
$._tree.expandAll(true);
|
|
|
|
$(this).hide();
|
|
|
|
$(this).hide();
|
|
|
|
$('#btnCollapse').show();
|
|
|
|
$('#btnCollapse').show();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$('#btnCollapse').click(function() {
|
|
|
|
$('#btnCollapse').click(function() {
|
|
|
|
$._tree.expandAll(false);
|
|
|
|
$._tree.expandAll(false);
|
|
|
|
$(this).hide();
|
|
|
|
$(this).hide();
|
|
|
|
$('#btnExpand').show();
|
|
|
|
$('#btnExpand').show();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$('#btnRefresh').click(function() {
|
|
|
|
$('#btnRefresh').click(function() {
|
|
|
|
queryDeptTree();
|
|
|
|
queryDeptTree();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
/* 自定义重置-表单重置/隐藏框/树节点选择色/搜索 */
|
|
|
|
/* 自定义重置-表单重置/隐藏框/树节点选择色/搜索 */
|
|
|
|
function resetPre() {
|
|
|
|
function resetPre() {
|
|
|
|
resetDate();
|
|
|
|
resetDate();
|
|
|
@ -252,13 +252,13 @@
|
|
|
|
var url = prefix + '/resetPwd/' + userId;
|
|
|
|
var url = prefix + '/resetPwd/' + userId;
|
|
|
|
$.modal.open("重置密码", url, '800', '300');
|
|
|
|
$.modal.open("重置密码", url, '800', '300');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 用户管理-分配角色 */
|
|
|
|
/* 用户管理-分配角色 */
|
|
|
|
function authRole(userId) {
|
|
|
|
function authRole(userId) {
|
|
|
|
var url = prefix + '/authRole/' + userId;
|
|
|
|
var url = prefix + '/authRole/' + userId;
|
|
|
|
$.modal.openTab("用户分配角色", url);
|
|
|
|
$.modal.openTab("用户分配角色", url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 用户状态显示 */
|
|
|
|
/* 用户状态显示 */
|
|
|
|
function statusTools(row) {
|
|
|
|
function statusTools(row) {
|
|
|
|
if (row.status == 1) {
|
|
|
|
if (row.status == 1) {
|
|
|
@ -267,7 +267,7 @@
|
|
|
|
return '<i class=\"fa fa-toggle-on text-info fa-2x\" onclick="disable(\'' + row.userId + '\')"></i> ';
|
|
|
|
return '<i class=\"fa fa-toggle-on text-info fa-2x\" onclick="disable(\'' + row.userId + '\')"></i> ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 用户管理-停用 */
|
|
|
|
/* 用户管理-停用 */
|
|
|
|
function disable(userId) {
|
|
|
|
function disable(userId) {
|
|
|
|
$.modal.confirm("确认要停用用户吗?", function() {
|
|
|
|
$.modal.confirm("确认要停用用户吗?", function() {
|
|
|
@ -298,4 +298,4 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
</html>
|
|
|
|
</html>
|
|
|
|