修复合并中的错误
This commit is contained in:
parent
c688f5d277
commit
c5bbb549c4
@ -50,7 +50,7 @@
|
||||
},{
|
||||
title : 'cron表达式',
|
||||
field : 'cron',
|
||||
width : 120,
|
||||
width : 100,
|
||||
templet : function(row){
|
||||
return '<a class="layui-btn layui-btn-sm btn-edit-cron" data-id="'+row.id+'" data-cron="'+row.cron+'">'+(row.cron || '编辑cron')+'</a>';
|
||||
}
|
||||
@ -72,10 +72,11 @@
|
||||
field : 'lastExecuteTime',
|
||||
align : 'center'
|
||||
},{
|
||||
title : '已执行',
|
||||
width : 80,
|
||||
title : '运行中/已完成',
|
||||
width : 120,
|
||||
field : 'executeCount',
|
||||
align : 'center'
|
||||
align : 'center',
|
||||
templet : '#execute-count'
|
||||
},{
|
||||
title : '下次执行时间',
|
||||
width : 160,
|
||||
@ -164,8 +165,10 @@
|
||||
})
|
||||
layui.layer.close(index);
|
||||
})
|
||||
}).on('click','.btn-task',function(){
|
||||
parent.openTab($(this).data('name') + '-任务详情',$(this).data('id') + '-task','task.html?id=' + $(this).data('id') + '&name=' + encodeURIComponent(encodeURIComponent($(this).data('name'))));
|
||||
}).on('click','.btn-log',function(){
|
||||
parent.openTab($(this).data('name') + '-日志',$(this).data('id'),'log.html?id=' + $(this).data('id'));
|
||||
parent.openTab($(this).data('name') + '-日志',$(this).data('id') + '-log','log.html?id=' + $(this).data('id'));
|
||||
}).on('click','.btn-edit-cron',function(){
|
||||
var id = $(this).data('id');
|
||||
var value = $(this).data('cron') || '';
|
||||
@ -179,6 +182,9 @@
|
||||
});
|
||||
})
|
||||
</script>
|
||||
<script type="text/html" id="execute-count">
|
||||
<a class="layui-btn layui-btn-sm btn-task" data-name="{{d.name}}" data-id="{{d.id}}">{{d.running || 0}}/{{d.executeCount || 0}}</a>
|
||||
</script>
|
||||
<script type="text/html" id="buttons">
|
||||
<a class="layui-btn layui-btn-sm btn-run" data-id="{{d.id}}">手动运行</a>
|
||||
<a class="layui-btn layui-btn-sm btn-log" data-name="{{d.name}}" data-id="{{d.id}}">查看日志</a>
|
||||
|
@ -90,7 +90,7 @@
|
||||
layui.layer.close(index);
|
||||
})
|
||||
}).on('click','.btn-log',function(){
|
||||
parent.openTab(decodeURIComponent(decodeURIComponent(getQueryString('name'))) + '-日志','log.html?id=' + $(this).data('id'));
|
||||
parent.openTab(decodeURIComponent(decodeURIComponent(getQueryString('name'))) + '-日志',$(this).data('id') + '-log','log.html?id=' + $(this).data('id'));
|
||||
})
|
||||
</script>
|
||||
<script type="text/html" id="buttons">
|
||||
|
Loading…
Reference in New Issue
Block a user