2016-10-30 12:11:08 +08:00
|
|
|
|
$(function () {
|
|
|
|
|
var bsa = new BootstrapAdmin({
|
|
|
|
|
url: '../api/Dicts',
|
|
|
|
|
dataEntity: new DataEntity({
|
|
|
|
|
map: {
|
|
|
|
|
ID: "dictID",
|
|
|
|
|
Category: "dictCate",
|
|
|
|
|
Name: "dictName",
|
2016-11-03 11:24:34 +08:00
|
|
|
|
Code: "dictCode",
|
2016-11-03 21:53:10 +08:00
|
|
|
|
Define: "dictDefine"
|
2016-10-30 12:11:08 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('table').smartTable({
|
|
|
|
|
url: '../api/Dicts', //请求后台的URL(*)
|
|
|
|
|
sortName: 'Category',
|
2016-11-05 18:43:49 +08:00
|
|
|
|
queryParams: function (params) { return $.extend(params, { category: $('#txt_dict_cate').val(), name: $("#txt_dict_name").val(), define: $("#txt_dict_define").val() }); },
|
2016-10-30 12:11:08 +08:00
|
|
|
|
columns: [{ checkbox: true },
|
|
|
|
|
{ title: "Id", field: "ID", events: bsa.idEvents(), formatter: BootstrapAdmin.idFormatter },
|
2016-11-03 21:53:10 +08:00
|
|
|
|
{ title: "字典分项", field: "Category", sortable: true },
|
|
|
|
|
{ title: "字典名称", field: "Name", sortable: true },
|
|
|
|
|
{ title: "字典代码", field: "Code", sortable: false },
|
|
|
|
|
{ title: "字典类别", field: "DefineName", sortable: true }
|
2016-10-30 12:11:08 +08:00
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// validate
|
|
|
|
|
$('#dataForm').autoValidate({
|
|
|
|
|
dictCate: {
|
|
|
|
|
required: true,
|
|
|
|
|
maxlength: 50
|
|
|
|
|
},
|
|
|
|
|
dictName: {
|
|
|
|
|
required: true,
|
|
|
|
|
maxlength: 50
|
|
|
|
|
},
|
|
|
|
|
dictCode: {
|
|
|
|
|
required: true,
|
|
|
|
|
maxlength: 50
|
2016-11-03 11:24:34 +08:00
|
|
|
|
},
|
|
|
|
|
dictDefine: {
|
|
|
|
|
required: false,
|
|
|
|
|
maxlength: 50
|
2016-10-30 12:11:08 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
2016-11-08 15:54:40 +08:00
|
|
|
|
// select
|
|
|
|
|
$('select').selectpicker();
|
2016-10-29 16:46:02 +08:00
|
|
|
|
});
|