2016-10-23 23:35:17 +08:00
|
|
|
|
$(function () {
|
|
|
|
|
$('#panelResultHeader').html('查询结果<span class="hidden-375 text-danger">(仅 Administrators 角色成员可删除数据)<span>');
|
|
|
|
|
var bsa = new BootstrapAdmin({
|
|
|
|
|
url: Dicts.url,
|
|
|
|
|
dataEntity: new DataEntity({
|
|
|
|
|
map: {
|
|
|
|
|
Id: "dictID",
|
|
|
|
|
Category: "dictCate",
|
|
|
|
|
Name: "dictName",
|
|
|
|
|
Code: "dictCode",
|
|
|
|
|
Define: "dictDefine"
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('table').smartTable({
|
|
|
|
|
url: Dicts.url,
|
|
|
|
|
sortName: 'Category',
|
|
|
|
|
queryParams: function (params) { return $.extend(params, { category: $('#txt_dict_cate').val(), name: $("#txt_dict_name").val(), define: $("#txt_dict_define").val() }); },
|
|
|
|
|
columns: [
|
|
|
|
|
{ checkbox: true },
|
2018-05-05 14:31:03 +08:00
|
|
|
|
{ title: "编辑", field: "Id", events: bsa.idEvents(), formatter: BootstrapAdmin.idFormatter },
|
2016-10-23 23:35:17 +08:00
|
|
|
|
{ title: "字典标签", field: "Category", sortable: true },
|
|
|
|
|
{ title: "字典名称", field: "Name", sortable: true },
|
|
|
|
|
{ title: "字典代码", field: "Code", sortable: true },
|
|
|
|
|
{ title: "字典分类", field: "Define", sortable: true, formatter: function (value, row, index) { return value == "0" ? "系统使用" : "自定义"; } }
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// validate
|
|
|
|
|
$('#dataForm').autoValidate({
|
|
|
|
|
dictCate: {
|
|
|
|
|
required: true,
|
|
|
|
|
maxlength: 50
|
|
|
|
|
},
|
|
|
|
|
dictName: {
|
|
|
|
|
required: true,
|
|
|
|
|
maxlength: 50
|
|
|
|
|
},
|
|
|
|
|
dictCode: {
|
|
|
|
|
required: true,
|
|
|
|
|
maxlength: 50
|
|
|
|
|
},
|
|
|
|
|
dictDefine: {
|
|
|
|
|
required: false,
|
|
|
|
|
maxlength: 50
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// autocomplete
|
|
|
|
|
$.bc({
|
|
|
|
|
Id: 1, url: Dicts.url, data: { type: 'category' }, swal: false,
|
|
|
|
|
callback: function (result) {
|
|
|
|
|
var data = result.map(function (ele, index) { return ele.Category; });
|
|
|
|
|
$('#txt_dict_cate').typeahead({
|
|
|
|
|
source: data,
|
|
|
|
|
autoSelect: true
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|