87,717
社区成员




$('#loginLogTable').datagrid('hideColumn', 'id');
$('#loginLogTable').datagrid('hideColumn', 'ip');
var loginLogTableParams = {
sortName: 'login_time',
sortOrder: 'desc',
fitColumns: true,
columns: [
[
{field: 'id', title: '登陆日志ID', sortable: true, align: 'center', width: 100},
{field: 'account', title: '工号', sortable: true, align: 'center', width: 100},
{field: 'name', title: '用户名', sortable: true, align: 'center', width: 100},
{field: 'ip', title: '登陆IP', sortable: true, align: 'center', width: 100},
{field: 'login_time', title: '登陆时间', sortable: true, align: 'center', width: 100},
{field: 'out_time', title: '登出时间', sortable: true, align: 'center', width: 100}
]
]
};
var loginLogTableParams = {
sortName: 'login_time',
sortOrder: 'desc',
fitColumns: true,
columns: [
[
{field: 'id', title: '登陆日志ID', sortable: true, align: 'center', width: 100, hidden: true},
{field: 'account', title: '工号', sortable: true, align: 'center', width: 100},
{field: 'name', title: '用户名', sortable: true, align: 'center', width: 100},
{field: 'ip', title: '登陆IP', sortable: true, align: 'center', width: 100, hidden: true},
{field: 'login_time', title: '登陆时间', sortable: true, align: 'center', width: 100},
{field: 'out_time', title: '登出时间', sortable: true, align: 'center', width: 100}
]
]
};