2018-06-07 00:45:47 +08:00
|
|
|
|
$(function () {
|
|
|
|
|
var $dialogRole = $('#dialogRole');
|
|
|
|
|
var $dialogRoleHeader = $('#myRoleModalLabel');
|
|
|
|
|
var $dialogRoleForm = $('#roleForm');
|
|
|
|
|
var $dialogGroup = $("#dialogGroup");
|
|
|
|
|
var $dialogGroupHeader = $('#myGroupModalLabel');
|
|
|
|
|
var $dialogGroupForm = $('#groupForm');
|
|
|
|
|
|
|
|
|
|
var bsa = new BootstrapAdmin({
|
|
|
|
|
url: User.url,
|
|
|
|
|
dataEntity: new DataEntity({
|
|
|
|
|
map: {
|
|
|
|
|
Id: "userID",
|
|
|
|
|
UserName: "userName",
|
|
|
|
|
Password: "password",
|
|
|
|
|
DisplayName: "displayName",
|
|
|
|
|
NewPassword: "confirm"
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
click: {
|
|
|
|
|
assign: [{
|
|
|
|
|
id: 'btn_assignRole',
|
|
|
|
|
click: function (row) {
|
|
|
|
|
$.bc({
|
2018-06-07 14:39:45 +08:00
|
|
|
|
id: row.Id, url: Role.url, data: { type: "user" }, swal: false,
|
2018-06-07 00:45:47 +08:00
|
|
|
|
callback: function (result) {
|
|
|
|
|
var htmlTemplate = this.htmlTemplate;
|
|
|
|
|
var html = $.map(result, function (element, index) {
|
|
|
|
|
return $.format(htmlTemplate, element.Id, element.RoleName, element.Checked, element.Description);
|
|
|
|
|
}).join('')
|
|
|
|
|
$dialogRoleHeader.text($.format('{0}-角色授权窗口', row.DisplayName));
|
|
|
|
|
$dialogRoleForm.html(html).find('[role="tooltip"]').each(function (index, label) {
|
|
|
|
|
if (label.title == "") label.title = "未设置";
|
|
|
|
|
}).lgbTooltip();
|
|
|
|
|
$dialogRole.modal('show');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
id: 'btn_assignGroup',
|
|
|
|
|
click: function (row) {
|
|
|
|
|
$.bc({
|
2018-06-07 14:39:45 +08:00
|
|
|
|
id: row.Id, url: Group.url, data: { type: "user" }, swal: false,
|
2018-06-07 00:45:47 +08:00
|
|
|
|
callback: function (result) {
|
|
|
|
|
var htmlTemplate = this.htmlTemplate;
|
|
|
|
|
var html = $.map(result, function (element, index) {
|
|
|
|
|
return $.format(htmlTemplate, element.Id, element.GroupName, element.Checked, element.Description);
|
|
|
|
|
}).join('');
|
|
|
|
|
$dialogGroupHeader.text($.format('{0}-部门授权窗口', row.DisplayName));
|
|
|
|
|
$dialogGroupForm.html(html).find('[role="tooltip"]').each(function (index, label) {
|
|
|
|
|
if (label.title == "") label.title = "未设置";
|
|
|
|
|
}).lgbTooltip();
|
|
|
|
|
$dialogGroup.modal('show');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
id: 'btnSubmitRole',
|
|
|
|
|
click: function (row) {
|
|
|
|
|
var userId = row.Id;
|
|
|
|
|
var roleIds = $dialogRole.find(':checked').map(function (index, element) {
|
|
|
|
|
return $(element).val();
|
|
|
|
|
}).toArray().join(',');
|
2018-06-08 20:13:52 +08:00
|
|
|
|
$.bc({ id: userId, url: Role.url, method: 'PUT', data: { type: "user", roleIds: roleIds }, title: Role.title, modal: '#dialogRole' });
|
2018-06-07 00:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
id: 'btnSubmitGroup',
|
|
|
|
|
click: function (row) {
|
|
|
|
|
var userId = row.Id;
|
|
|
|
|
var groupIds = $dialogGroup.find(':checked').map(function (index, element) {
|
|
|
|
|
return $(element).val();
|
|
|
|
|
}).toArray().join(',');
|
2018-06-08 20:13:52 +08:00
|
|
|
|
$.bc({ id: userId, url: Group.url, method: 'PUT', data: { type: "user", groupIds: groupIds }, title: Group.title, modal: '#dialogGroup' });
|
2018-06-07 00:45:47 +08:00
|
|
|
|
}
|
|
|
|
|
}]
|
|
|
|
|
},
|
|
|
|
|
callback: function (data) {
|
2018-06-07 14:39:45 +08:00
|
|
|
|
if (data && data.success && data.oper === 'save' && data.data.UserName == $('#userDisplayName').attr('data-userName')) {
|
2018-06-07 00:45:47 +08:00
|
|
|
|
$('#userDisplayName').text(data.data.DisplayName);
|
|
|
|
|
}
|
|
|
|
|
if (data && data.oper === 'create') {
|
|
|
|
|
$('#userName').prop('readonly', false).removeClass("ignore");
|
|
|
|
|
}
|
|
|
|
|
else if (data && data.oper === 'edit') {
|
|
|
|
|
$('#userName').prop('readonly', true).addClass("ignore");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('table').smartTable({
|
|
|
|
|
url: User.url, //请求后台的URL(*)
|
|
|
|
|
sortName: 'DisplayName',
|
|
|
|
|
sortOrder: "asc",
|
|
|
|
|
queryParams: function (params) { return $.extend(params, { name: $("#txt_search_name").val(), displayName: $('#txt_display_name').val() }); }, //传递参数(*)
|
|
|
|
|
columns: [
|
|
|
|
|
{ checkbox: true },
|
|
|
|
|
{ title: "编辑", field: "Id", events: bsa.idEvents(), formatter: BootstrapAdmin.idFormatter },
|
|
|
|
|
{ title: "登陆名称", field: "UserName", sortable: true },
|
|
|
|
|
{ title: "显示名称", field: "DisplayName", sortable: true },
|
|
|
|
|
{ title: "注册时间", field: "RegisterTime", sortable: true },
|
|
|
|
|
{ title: "授权时间", field: "ApprovedTime", sortable: true },
|
|
|
|
|
{ title: "授权人", field: "ApprovedBy", sortable: true },
|
|
|
|
|
{ title: "说明", field: "Description", sortable: false }
|
|
|
|
|
]
|
|
|
|
|
});
|
2016-10-22 20:55:07 +08:00
|
|
|
|
});
|