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.
126 lines
3.4 KiB
126 lines
3.4 KiB
<!DOCTYPE html>
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
|
<head>
|
|
<th:block th:include="include :: header('关联系统用户')" />
|
|
</head>
|
|
|
|
<body class="gray-bg">
|
|
<div class="container-div">
|
|
<div class="row">
|
|
<div class="col-sm-12 search-collapse">
|
|
<form id="role-form">
|
|
<div class="select-list">
|
|
<ul>
|
|
<li>
|
|
登录名称:<input type="text" name="loginName"/>
|
|
</li>
|
|
<li>
|
|
手机号码:<input type="text" name="phonenumber"/>
|
|
</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="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="col-sm-12 select-table table-striped">
|
|
<table id="bootstrap-table"></table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<th:block th:include="include :: footer" />
|
|
<script th:inline="javascript">
|
|
var datas = [[${@dict.getType('sys_normal_disable')}]];
|
|
var prefix = ctx + "process/user";
|
|
// var prefix = ctx + "system/user";
|
|
|
|
$(function() {
|
|
var options = {
|
|
url: prefix + "/systemUserList",
|
|
// url: prefix + "/list",
|
|
queryParams: queryParams,
|
|
sortName: "createTime",
|
|
sortOrder: "desc",
|
|
modalName: "用户",
|
|
showSearch: false,
|
|
showRefresh: false,
|
|
showToggle: false,
|
|
showColumns: false,
|
|
clickToSelect: true,
|
|
rememberSelected: false,
|
|
columns: [{
|
|
field: 'state',
|
|
checkbox: true
|
|
},
|
|
{
|
|
field: 'userId',
|
|
title: '用户ID',
|
|
visible: false
|
|
},
|
|
{
|
|
field: 'loginName',
|
|
title: '登录名称',
|
|
sortable: true
|
|
},
|
|
{
|
|
field: 'userName',
|
|
title: '用户名称'
|
|
},
|
|
{
|
|
field: 'email',
|
|
title: '邮箱'
|
|
},
|
|
{
|
|
field: 'phonenumber',
|
|
title: '手机'
|
|
},
|
|
{
|
|
field: 'status',
|
|
title: '用户状态',
|
|
align: 'center',
|
|
formatter: function (value, row, index) {
|
|
return $.table.selectDictLabel(datas, value);
|
|
}
|
|
},
|
|
{
|
|
field: 'createTime',
|
|
title: '创建时间',
|
|
sortable: true
|
|
}]
|
|
};
|
|
$.table.init(options);
|
|
});
|
|
|
|
function queryParams(params) {
|
|
var search = $.table.queryParams(params);
|
|
search.roleId = $("#roleId").val();
|
|
return search;
|
|
}
|
|
|
|
/* 添加用户-选择用户-提交 */
|
|
function submitHandler() {
|
|
var rows = $.table.selectFirstColumns();
|
|
if (rows.length == 0) {
|
|
$.modal.alertWarning("请选择一条记录");
|
|
return;
|
|
}
|
|
if (rows.length > 1) {
|
|
$.modal.alertWarning("请只选择一条记录");
|
|
return;
|
|
}
|
|
$.modal.confirm('确定要关联该系统用户吗?',
|
|
function() {
|
|
parent.$('#form-user-add input[name=id]').val($.table.selectColumns("loginName"));
|
|
parent.$('#form-user-add input[name=first]').val($.table.selectColumns("userName"));
|
|
$.modal.close();
|
|
}
|
|
);
|
|
// $.modal.close();
|
|
// $.operate.save(prefix + "/selectAll", data);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|