$(function() { // 任务组列表选中, 任务列表初始化和选中 $("#jobGroup").on("change", function () { var jobGroup = $(this).children('option:selected').val(); $.ajax({ type : 'POST', async: false, // async, avoid js invoke pagelist before jobId data init url : base_url + '/joblog/getJobsByGroup', data : {"jobGroup":jobGroup}, dataType : "json", success : function(data){ if (data.code == 200) { $("#jobId").html(''); $.each(data.content, function (n, value) { $("#jobId").append(''); }); if ($("#jobId").attr("paramVal")){ $("#jobId").find("option[value='" + $("#jobId").attr("paramVal") + "']").attr("selected",true); } } else { ComAlertTec.show(data.msg); } }, }); }); if ($("#jobGroup").attr("paramVal")){ $("#jobGroup").find("option[value='" + $("#jobGroup").attr("paramVal") + "']").attr("selected",true); $("#jobGroup").change(); } // 过滤时间 $('#filterTime').daterangepicker({ autoApply:false, singleDatePicker:false, showDropdowns:false, // 是否显示年月选择条件 timePicker: true, // 是否显示小时和分钟选择条件 timePickerIncrement: 10, // 时间的增量,单位为分钟 timePicker24Hour : true, opens : 'left', //日期选择框的弹出位置 ranges: { '最近1小时': [moment().subtract(1, 'hours'), moment()], '今日': [moment().startOf('day'), moment().endOf('day')], '昨日': [moment().subtract(1, 'days').startOf('day'), moment().subtract(1, 'days').endOf('day')], '最近7日': [moment().subtract(6, 'days'), moment()], '最近30日': [moment().subtract(29, 'days'), moment()], '本月': [moment().startOf('month'), moment().endOf('month')], '上个月': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')] }, locale : { format: 'YYYY-MM-DD HH:mm:ss', separator : ' - ', customRangeLabel : '自定义', applyLabel : '确定', cancelLabel : '取消', fromLabel : '起始时间', toLabel : '结束时间', daysOfWeek : [ '日', '一', '二', '三', '四', '五', '六' ], monthNames : [ '一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月' ], firstDay : 1, startDate: moment().startOf('day'), endDate: moment().endOf('day') } }); // init date tables var logTable = $("#joblog_list").dataTable({ "deferRender": true, "processing" : true, "serverSide": true, "ajax": { url: base_url + "/joblog/pageList" , data : function ( d ) { var obj = {}; obj.jobGroup = $('#jobGroup').val(); obj.jobId = $('#jobId').val(); obj.filterTime = $('#filterTime').val(); obj.start = d.start; obj.length = d.length; return obj; } }, "searching": false, "ordering": false, //"scrollX": false, "columns": [ { "data": 'id', "bSortable": false, "visible" : false}, { "data": 'jobGroup', "visible" : false}, { "data": 'jobId', "visible" : false}, { "data": 'triggerTime', "render": function ( data, type, row ) { return data?moment(new Date(data)).format("YYYY-MM-DD HH:mm:ss"):""; } }, { "data": 'triggerCode', "render": function ( data, type, row ) { return (data==200)?'成功':(data==500)?'失败':(data==0)?'':data; } }, { "data": 'triggerMsg', "render": function ( data, type, row ) { return data?'查看'+ data +'':"无"; } }, { "data": 'executorAddress', "visible" : true}, { "data": 'glueType', "visible" : true, "render": function ( data, type, row ) { if ('GLUE_GROOVY'==row.glueType) { return "GLUE模式(Java)"; } else if ('GLUE_SHELL'==row.glueType) { return "GLUE模式(Shell)"; } else if ('GLUE_PYTHON'==row.glueType) { return "GLUE模式(Python)"; } else if ('BEAN'==row.glueType) { return "BEAN模式:" + row.executorHandler; } return row.executorHandler; } }, { "data": 'executorParam', "visible" : true}, { "data": 'handleTime', "render": function ( data, type, row ) { return data?moment(new Date(data)).format("YYYY-MM-DD HH:mm:ss"):""; } }, { "data": 'handleCode', "render": function ( data, type, row ) { return (data==200)?'成功':(data==500)?'失败':(data==0)?'':data; } }, { "data": 'handleMsg', "render": function ( data, type, row ) { return data?'查看'+ data +'':"无"; } }, { "data": 'handleMsg' , "bSortable": false, "width": "8%" , "render": function ( data, type, row ) { // better support expression or string, not function return function () { if (row.triggerCode == 200){ var temp = '执行日志'; if(row.handleCode == 0){ temp += '
终止任务'; } return temp; } return null; } } } ], "language" : { "sProcessing" : "处理中...", "sLengthMenu" : "每页 _MENU_ 条记录", "sZeroRecords" : "没有匹配结果", "sInfo" : "第 _PAGE_ 页 ( 总共 _PAGES_ 页,_TOTAL_ 条记录 )", "sInfoEmpty" : "无记录", "sInfoFiltered" : "(由 _MAX_ 项结果过滤)", "sInfoPostFix" : "", "sSearch" : "搜索:", "sUrl" : "", "sEmptyTable" : "表中数据为空", "sLoadingRecords" : "载入中...", "sInfoThousands" : ",", "oPaginate" : { "sFirst" : "首页", "sPrevious" : "上页", "sNext" : "下页", "sLast" : "末页" }, "oAria" : { "sSortAscending" : ": 以升序排列此列", "sSortDescending" : ": 以降序排列此列" } } }); // 任务数据 $('#joblog_list').on('click', '.logMsg', function(){ var msg = $(this).find('span').html(); ComAlert.show(2, msg); }); // 日志弹框提示 $('#joblog_list').on('click', '.logTips', function(){ var msg = $(this).find('span').html(); ComAlertTec.show(msg); }); // 搜索按钮 $('#searchBtn').on('click', function(){ logTable.fnDraw(); }); // 查看执行器详细执行日志 $('#joblog_list').on('click', '.logDetail', function(){ var _id = $(this).attr('_id'); window.open(base_url + '/joblog/logDetailPage?id=' + _id); return; /* $.ajax({ type : 'POST', url : base_url + '/joblog/logDetail', data : {"id":_id}, dataType : "json", success : function(data){ if (data.code == 200) { ComAlertTec.show('
'+ data.content +'
'); } else { ComAlertTec.show(data.msg); } }, }); */ }); $('#joblog_list').on('click', '.logKill', function(){ var _id = $(this).attr('_id'); ComConfirm.show("确认主动终止任务?", function(){ $.ajax({ type : 'POST', url : base_url + '/joblog/logKill', data : {"id":_id}, dataType : "json", success : function(data){ if (data.code == 200) { ComAlert.show(1, '操作成功'); logTable.fnDraw(); } else { ComAlert.show(2, data.msg); } }, }); }); }); });