var prefix = ctx + "/monitor/operlog" $(function() { var columns = [{ checkbox: true }, { field: 'operId', title: '日志编号' }, { field: 'title', title: '模块' }, { field: 'action', title: '功能' }, { field: 'loginName', title: '登录名称' }, { field: 'deptName', title: '部门名称' }, { field: 'operIp', title: '主机' }, { field: 'status', title: '操作状态', align: 'center', formatter: function(value, row, index) { if (value == 0) { return '成功'; } else if (value == 1) { return '异常'; } } }, { field: 'operTime', title: '操作时间' }, { title: '操作', align: 'center', formatter: function(value, row, index) { var actions = []; actions.push(''); return actions.join(''); } }]; var url = prefix + "/list"; $.initTable(columns, url); }); /*操作日志-详细*/ function detail(id) { var url = prefix + '/detail/' + id; layer_showAuto("操作日志详细", url); } // 批量删除 function batchRemove() { var rows = $.getSelections("operId"); if (rows.length == 0) { $.modalMsg("请选择要删除的数据", "warning"); return; } $.modalConfirm("确认要删除选中的" + rows.length + "条数据吗?", function() { _ajax(prefix + '/batchRemove', { "ids": rows }, "post"); }); }