2016-10-22 20:55:07 +08:00
|
|
|
|
(function ($) {
|
|
|
|
|
BootstrapAdmin = function (options) {
|
|
|
|
|
var that = this;
|
2016-10-25 18:47:33 +08:00
|
|
|
|
if (options.click !== undefined && options.click.constructor === Object) { options.click = $.extend({}, BootstrapAdmin.settings.click, options.click); }
|
2016-10-22 20:55:07 +08:00
|
|
|
|
this.options = $.extend({}, BootstrapAdmin.settings, options);
|
|
|
|
|
|
|
|
|
|
this.dataEntity = options.dataEntity;
|
|
|
|
|
if (!(this.dataEntity instanceof DataEntity) && window.console) {
|
|
|
|
|
window.console.log('初始化参数中没有DataEntity实例');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// handler click event
|
|
|
|
|
for (name in this.options.click) {
|
2016-10-25 18:47:33 +08:00
|
|
|
|
var ele = this.options.click[name];
|
|
|
|
|
var cId = ele;
|
|
|
|
|
var event = null;
|
|
|
|
|
if ($.isArray(ele)) {
|
|
|
|
|
for (index in ele) {
|
|
|
|
|
if (ele[index].id === undefined) {
|
2016-10-28 21:26:13 +08:00
|
|
|
|
window.console.log('options.click.assign[{0}].{1}.id 未设置控件id', ele[index].id, name);
|
2016-10-25 18:47:33 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
cId = ele[index]['id'];
|
|
|
|
|
event = ele[index]['click'];
|
|
|
|
|
handler(cId, event);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else handler(cId, event);
|
2016-10-22 20:55:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// handler modal window show event
|
|
|
|
|
if (this.options.modal.constructor === String) {
|
|
|
|
|
$('#' + this.options.modal).on('show.bs.modal', function (e) {
|
|
|
|
|
if (that.options.validateForm.constructor === String) {
|
|
|
|
|
var v = $('#' + that.options.validateForm).validate();
|
|
|
|
|
v.currentElements.each(function () { $(this).popover('destroy'); })
|
|
|
|
|
v.resetForm();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2016-10-25 18:47:33 +08:00
|
|
|
|
|
|
|
|
|
function handler(cid, event) {
|
|
|
|
|
var source = $("#" + cId);
|
|
|
|
|
source.data('click', name);
|
|
|
|
|
if (event !== null) source.data('event', event);
|
|
|
|
|
source.click(function () {
|
|
|
|
|
var method = $(this).data('click');
|
|
|
|
|
BootstrapAdmin.prototype[method].call(that, this, $(this).data('event'));
|
|
|
|
|
});
|
|
|
|
|
}
|
2016-10-22 20:55:07 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
BootstrapAdmin.VERSION = "1.0";
|
|
|
|
|
BootstrapAdmin.Author = "Argo Zhang";
|
|
|
|
|
BootstrapAdmin.Email = "argo@163.com";
|
|
|
|
|
|
|
|
|
|
BootstrapAdmin.settings = {
|
|
|
|
|
url: undefined,
|
|
|
|
|
bootstrapTable: 'table',
|
|
|
|
|
validateForm: 'dataForm',
|
|
|
|
|
modal: 'dialogNew',
|
2016-10-24 20:53:05 +08:00
|
|
|
|
click: {
|
|
|
|
|
query: 'btn_query',
|
|
|
|
|
create: 'btn_add',
|
|
|
|
|
edit: 'btn_edit',
|
|
|
|
|
del: 'btn_delete',
|
2016-10-25 18:47:33 +08:00
|
|
|
|
save: 'btnSubmit',
|
|
|
|
|
assign: []
|
2016-10-24 20:53:05 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2016-10-22 20:55:07 +08:00
|
|
|
|
|
|
|
|
|
BootstrapAdmin.idFormatter = function (value, row, index) {
|
|
|
|
|
return "<a class='edit' href='javascript:void(0)'>" + value + "</a>";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
BootstrapAdmin.prototype = {
|
|
|
|
|
constructor: BootstrapAdmin,
|
2016-10-24 19:12:22 +08:00
|
|
|
|
idEvents: function () {
|
|
|
|
|
var op = {
|
2016-10-25 18:47:33 +08:00
|
|
|
|
dataEntity: $.extend({}, this.options.dataEntity),
|
2016-10-24 19:12:22 +08:00
|
|
|
|
table: this.options.bootstrapTable,
|
|
|
|
|
modal: this.options.modal
|
|
|
|
|
};
|
|
|
|
|
return {
|
|
|
|
|
'click .edit': function (e, value, row, index) {
|
|
|
|
|
op.dataEntity.load(row);
|
2016-10-25 18:47:33 +08:00
|
|
|
|
$(op.table).bootstrapTable('uncheckAll');
|
|
|
|
|
$(op.table).bootstrapTable('check', index);
|
2016-10-24 19:12:22 +08:00
|
|
|
|
$('#' + op.modal).modal("show");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2016-10-22 20:55:07 +08:00
|
|
|
|
|
|
|
|
|
query: function () {
|
|
|
|
|
if (this.options.bootstrapTable.constructor === String) $(this.options.bootstrapTable).bootstrapTable('refresh');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
create: function () {
|
2016-10-25 18:47:33 +08:00
|
|
|
|
if (this.dataEntity instanceof DataEntity) this.dataEntity.reset();
|
2016-10-22 20:55:07 +08:00
|
|
|
|
if (this.options.modal.constructor === String) $('#' + this.options.modal).modal("show");
|
|
|
|
|
if (this.options.bootstrapTable.constructor === String) $(this.options.bootstrapTable).bootstrapTable('uncheckAll');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
edit: function () {
|
2016-10-25 18:47:33 +08:00
|
|
|
|
var options = this.options;
|
2016-10-22 20:55:07 +08:00
|
|
|
|
if (options.bootstrapTable.constructor !== String) return;
|
|
|
|
|
var arrselections = $(options.bootstrapTable).bootstrapTable('getSelections');
|
|
|
|
|
if (arrselections.length == 0) {
|
2016-10-25 18:47:33 +08:00
|
|
|
|
swal('请选择要编辑的数据', "编辑操作", "warning");
|
2016-10-22 20:55:07 +08:00
|
|
|
|
}
|
|
|
|
|
else if (arrselections.length > 1) {
|
2016-10-25 18:47:33 +08:00
|
|
|
|
swal('请选择一个要编辑的数据', "编辑操作", "warning");
|
2016-10-22 20:55:07 +08:00
|
|
|
|
}
|
|
|
|
|
else {
|
2016-10-25 18:47:33 +08:00
|
|
|
|
if (this.dataEntity instanceof DataEntity) this.dataEntity.load(arrselections[0]);
|
2016-10-22 20:55:07 +08:00
|
|
|
|
if (options.modal.constructor === String) $('#' + options.modal).modal("show");
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
del: function () {
|
|
|
|
|
var options = this.options;
|
|
|
|
|
if (options.bootstrapTable.constructor !== String) return;
|
|
|
|
|
var arrselections = $(options.bootstrapTable).bootstrapTable('getSelections');
|
|
|
|
|
if (arrselections.length == 0) {
|
2016-10-25 18:47:33 +08:00
|
|
|
|
swal('请选择要删除的数据', "删除操作", "warning");
|
2016-10-22 20:55:07 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
swal({
|
|
|
|
|
title: "您确定要删除吗?",
|
|
|
|
|
text: "删除操作",
|
|
|
|
|
type: "warning",
|
|
|
|
|
showCancelButton: true,
|
|
|
|
|
closeOnConfirm: true,
|
|
|
|
|
confirmButtonText: "是的,我要删除",
|
|
|
|
|
confirmButtonColor: "#d9534f",
|
|
|
|
|
cancelButtonText: "取消"
|
|
|
|
|
}, function () {
|
|
|
|
|
var iDs = arrselections.map(function (element, index) { return element.ID }).join(",");
|
2016-10-25 12:16:00 +08:00
|
|
|
|
options.IDs = iDs;
|
2016-10-22 20:55:07 +08:00
|
|
|
|
$.ajax({
|
|
|
|
|
url: options.url,
|
|
|
|
|
data: { "": iDs },
|
|
|
|
|
type: 'DELETE',
|
|
|
|
|
success: function (result) {
|
2016-10-25 12:16:00 +08:00
|
|
|
|
if ($.isFunction(options.success)) options.success('del', options);
|
2016-10-22 20:55:07 +08:00
|
|
|
|
if (result) setTimeout(function () { swal("成功!", "删除数据", "success"); $(options.bootstrapTable).bootstrapTable('refresh'); }, 100);
|
|
|
|
|
else setTimeout(function () { swal("失败", "删除数据", "error"); }, 200);
|
|
|
|
|
},
|
|
|
|
|
error: function (XMLHttpRequest, textStatus, errorThrown) {
|
|
|
|
|
swal("失败", "删除数据", "error");
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
save: function () {
|
2016-10-25 18:47:33 +08:00
|
|
|
|
var options = $.extend({ data: {} }, this.options);
|
|
|
|
|
if (this.dataEntity instanceof DataEntity) options = $.extend(options, { data: this.dataEntity.get() });
|
2016-10-22 20:55:07 +08:00
|
|
|
|
if (options.validateForm.constructor === String && !$("#" + options.validateForm).valid()) return;
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: options.url,
|
|
|
|
|
data: options.data,
|
|
|
|
|
type: 'POST',
|
|
|
|
|
success: function (result) {
|
|
|
|
|
if (result) {
|
2016-10-25 12:16:00 +08:00
|
|
|
|
if ($.isFunction(options.success)) options.success('save', options.data);
|
2016-10-22 20:55:07 +08:00
|
|
|
|
if (options.bootstrapTable.constructor === String && options.data.ID.constructor === String) {
|
|
|
|
|
// 更新表格
|
|
|
|
|
if (options.data.ID > 0) {
|
|
|
|
|
var allTableData = $(options.bootstrapTable).bootstrapTable('getData');
|
|
|
|
|
for (index = 0; index < allTableData.length; index++) {
|
|
|
|
|
var temp = allTableData[index];
|
|
|
|
|
if (temp.ID == options.data.ID) {
|
|
|
|
|
$(options.bootstrapTable).bootstrapTable('updateRow', { index: index, row: $.extend(temp, options.data) });
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$(options.bootstrapTable).bootstrapTable('refresh');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (options.modal.constructor === String) $('#' + options.modal).modal("hide");
|
|
|
|
|
swal("成功", "保存数据", "success");
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
swal("失败", "保存数据", "error");
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
error: function (XMLHttpRequest, textStatus, errorThrown) {
|
|
|
|
|
swal("失败", "保存数据失败", "error");
|
|
|
|
|
}
|
|
|
|
|
});
|
2016-10-25 18:47:33 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
assign: function (eventSrc, callback) {
|
|
|
|
|
var options = this.options;
|
|
|
|
|
if (options.bootstrapTable.constructor !== String) return;
|
|
|
|
|
var arrselections = $(options.bootstrapTable).bootstrapTable('getSelections');
|
|
|
|
|
if (arrselections.length == 0) {
|
|
|
|
|
swal('请选择要编辑的数据', "编辑操作", "warning");
|
|
|
|
|
}
|
|
|
|
|
else if (arrselections.length > 1) {
|
|
|
|
|
swal('请选择一个要编辑的数据', "编辑操作", "warning");
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if ($.isFunction(callback)) {
|
|
|
|
|
callback.call(eventSrc, arrselections[0]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2016-11-03 15:36:51 +08:00
|
|
|
|
var htmlTemplate = '<div class="form-group checkbox col-lg-3 col-xs-4"><label class="tooltips" data-placement="top" data-original-title="{3}" title="{3}"><input type="checkbox" value="{0}" {2}/>{1}</label></div>';
|
2016-11-02 15:11:09 +08:00
|
|
|
|
|
|
|
|
|
var processData = function (options) {
|
|
|
|
|
var data = $.extend({ data: { type: "" }, method: "POST", Id: "", url: this.url, title: this.title, html: this.html }, options);
|
2016-10-25 18:47:33 +08:00
|
|
|
|
$.ajax({
|
2016-11-02 15:11:09 +08:00
|
|
|
|
url: data.url + data.Id,
|
2016-10-28 13:36:43 +08:00
|
|
|
|
data: data.data,
|
|
|
|
|
type: data.method,
|
2016-10-25 18:47:33 +08:00
|
|
|
|
success: function (result) {
|
2016-10-28 14:45:09 +08:00
|
|
|
|
if ($.isFunction(data.callback)) {
|
|
|
|
|
if ($.isArray(result)) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
var html = data.html(result);
|
2016-10-28 14:45:09 +08:00
|
|
|
|
data.callback(html);
|
2016-11-02 15:11:09 +08:00
|
|
|
|
$('div.checkbox label.tooltips').tooltip();
|
2016-10-28 21:26:13 +08:00
|
|
|
|
return;
|
2016-10-28 14:45:09 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-28 21:26:13 +08:00
|
|
|
|
else if ($.isPlainObject(data.callback) && data.callback.modal !== undefined) {
|
|
|
|
|
$("#" + data.callback.modal).modal('hide');
|
|
|
|
|
}
|
2016-11-02 15:11:09 +08:00
|
|
|
|
if (result) { swal("成功", data.title, "success"); }
|
|
|
|
|
else { swal("失败", data.title, "error"); }
|
2016-10-29 17:38:23 +08:00
|
|
|
|
if ($.isFunction(data.callback)) data.callback(result);
|
2016-10-25 18:47:33 +08:00
|
|
|
|
},
|
|
|
|
|
error: function (XMLHttpRequest, textStatus, errorThrown) {
|
2016-10-28 13:36:43 +08:00
|
|
|
|
if ($.isFunction(data.callback)) data.callback(false);
|
2016-10-25 18:47:33 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
2016-10-28 13:36:43 +08:00
|
|
|
|
}
|
2016-11-02 15:11:09 +08:00
|
|
|
|
// Role
|
|
|
|
|
Role = {
|
|
|
|
|
url: '../api/Roles/', title: "授权角色", html: function (result) {
|
|
|
|
|
return $.map(result, function (element, index) {
|
|
|
|
|
return $.format(htmlTemplate, element.ID, element.RoleName, element.Checked, element.Description);
|
|
|
|
|
}).join('');
|
|
|
|
|
}
|
|
|
|
|
};
|
2016-10-28 13:36:43 +08:00
|
|
|
|
Role.getRolesByUserId = function (userId, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: userId, callback: callback, data: { type: "user" } });
|
2016-10-25 18:47:33 +08:00
|
|
|
|
};
|
2016-10-27 17:56:00 +08:00
|
|
|
|
Role.getRolesByGroupId = function (groupId, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: groupId, callback: callback, data: { type: "group" } });
|
2016-10-25 18:47:33 +08:00
|
|
|
|
};
|
2016-10-28 11:12:25 +08:00
|
|
|
|
Role.getRolesByMenuId = function (menuId, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: menuId, callback: callback, data: { type: "menu" } });
|
2016-10-28 11:12:25 +08:00
|
|
|
|
};
|
2016-10-25 18:47:33 +08:00
|
|
|
|
Role.saveRolesByUserId = function (userId, roleIds, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: userId, callback: callback, method: "PUT", data: { type: "user", roleIds: roleIds } });
|
2016-10-25 18:47:33 +08:00
|
|
|
|
}
|
2016-10-27 17:56:00 +08:00
|
|
|
|
Role.saveRolesByGroupId = function (groupId, roleIds, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: groupId, callback: callback, method: "PUT", data: { type: "group", roleIds: roleIds } });
|
2016-10-27 17:56:00 +08:00
|
|
|
|
}
|
2016-10-28 11:12:25 +08:00
|
|
|
|
Role.saveRolesByMenuId = function (menuId, roleIds, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: menuId, callback: callback, method: "PUT", data: { type: "menu", roleIds: roleIds } });
|
2016-10-28 11:12:25 +08:00
|
|
|
|
};
|
2016-11-02 15:11:09 +08:00
|
|
|
|
// Users
|
|
|
|
|
User = {
|
|
|
|
|
url: '../api/Users/', title: "授权用户", html: function (result) {
|
|
|
|
|
return $.map(result, function (element, index) {
|
|
|
|
|
return $.format(htmlTemplate, element.ID, element.DisplayName, element.Checked, element.UserName);
|
|
|
|
|
}).join('');
|
|
|
|
|
}
|
2016-10-28 20:18:12 +08:00
|
|
|
|
}
|
|
|
|
|
User.getUsersByRoleId = function (roleId, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: roleId, callback: callback, data: { type: "role" } });
|
2016-10-28 20:18:12 +08:00
|
|
|
|
};
|
|
|
|
|
User.saveUsersByRoleId = function (roleId, userIds, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: roleId, callback: callback, method: "PUT", data: { type: "role", userIds: userIds } });
|
2016-10-28 20:18:12 +08:00
|
|
|
|
}
|
2016-10-29 17:38:23 +08:00
|
|
|
|
User.getUsersByGroupeId = function (groupId, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: groupId, callback: callback, data: { type: "group" } });
|
2016-10-29 17:38:23 +08:00
|
|
|
|
};
|
|
|
|
|
User.saveUsersByGroupId = function (groupId, userIds, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: groupId, callback: callback, method: "PUT", data: { type: "group", userIds: userIds } });
|
2016-10-29 17:38:23 +08:00
|
|
|
|
}
|
2016-11-02 15:11:09 +08:00
|
|
|
|
// Groups
|
|
|
|
|
Group = {
|
|
|
|
|
url: '../api/Groups/', title: "授权部门", html: function (result) {
|
|
|
|
|
return $.map(result, function (element, index) {
|
|
|
|
|
return $.format(htmlTemplate, element.ID, element.GroupName, element.Checked, element.Description);
|
|
|
|
|
}).join('');
|
|
|
|
|
}
|
|
|
|
|
};
|
2016-10-28 21:46:48 +08:00
|
|
|
|
Group.getGroupsByUserId = function (userId, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: userId, callback: callback, data: { type: "user" } });
|
2016-10-28 21:46:48 +08:00
|
|
|
|
};
|
|
|
|
|
Group.saveGroupsByUserId = function (userId, groupIds, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: userId, callback: callback, method: "PUT", data: { type: "user", groupIds: groupIds } });
|
2016-10-25 18:47:33 +08:00
|
|
|
|
};
|
2016-10-27 17:56:00 +08:00
|
|
|
|
Group.getGroupsByRoleId = function (roleId, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: roleId, callback: callback, data: { type: "role" } });
|
2016-10-29 09:24:55 +08:00
|
|
|
|
};
|
2016-10-27 17:56:00 +08:00
|
|
|
|
Group.saveGroupsByRoleId = function (roleId, groupIds, callback) {
|
2016-11-02 15:11:09 +08:00
|
|
|
|
processData.call(this, { Id: roleId, callback: callback, method: "PUT", data: { type: "role", groupIds: groupIds } });
|
2016-10-29 09:24:55 +08:00
|
|
|
|
};
|
2016-10-20 17:55:29 +08:00
|
|
|
|
})(jQuery);
|