2016-10-22 20:55:07 +08:00
|
|
|
|
$(function () {
|
2016-10-24 19:12:22 +08:00
|
|
|
|
var bsa = new BootstrapAdmin({
|
2016-10-22 20:55:07 +08:00
|
|
|
|
url: '../api/Users',
|
2016-10-24 20:53:05 +08:00
|
|
|
|
dataEntity: new DataEntity({
|
|
|
|
|
map: {
|
|
|
|
|
ID: "userID",
|
|
|
|
|
UserName: "userName",
|
|
|
|
|
Password: "password",
|
|
|
|
|
DisplayName: "displayName"
|
|
|
|
|
}
|
|
|
|
|
})
|
2016-10-22 20:55:07 +08:00
|
|
|
|
});
|
|
|
|
|
|
2016-10-24 10:11:38 +08:00
|
|
|
|
$('table').smartTable({
|
2016-10-22 20:55:07 +08:00
|
|
|
|
url: '../api/Users', //请求后台的URL(*)
|
|
|
|
|
sortName: 'UserName',
|
2016-10-24 20:53:05 +08:00
|
|
|
|
queryParams: function (params) { return $.extend(params, { name: $("#txt_search_name").val(), displayName: $('#txt_display_name').val() }); }, //传递参数(*)
|
2016-10-22 20:55:07 +08:00
|
|
|
|
columns: [{ checkbox: true },
|
2016-10-24 19:12:22 +08:00
|
|
|
|
{ title: "Id", field: "ID", events: bsa.idEvents(), formatter: BootstrapAdmin.idFormatter },
|
2016-10-24 20:53:05 +08:00
|
|
|
|
{ title: "登陆名称", field: "UserName", sortable: true },
|
|
|
|
|
{ title: "显示名称", field: "DisplayName", sortable: false }
|
2016-10-22 20:55:07 +08:00
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// validate
|
|
|
|
|
$('#dataForm').autoValidate({
|
|
|
|
|
userName: {
|
|
|
|
|
required: true,
|
|
|
|
|
maxlength: 50
|
|
|
|
|
},
|
|
|
|
|
password: {
|
|
|
|
|
required: true,
|
|
|
|
|
maxlength: 50
|
|
|
|
|
},
|
|
|
|
|
confirm: {
|
|
|
|
|
required: true,
|
|
|
|
|
equalTo: "#password"
|
2016-10-24 13:35:58 +08:00
|
|
|
|
},
|
|
|
|
|
displayName: {
|
|
|
|
|
required: true,
|
|
|
|
|
maxlength: 50
|
2016-10-22 20:55:07 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
2016-10-24 01:01:29 +08:00
|
|
|
|
|
|
|
|
|
//TODO: 客户端点击保存用户后,要更新页面右上角用户显示名称
|
2016-10-22 20:55:07 +08:00
|
|
|
|
});
|