RuoYi/bps-kettle/src/main/resources/templates/kettle/job/job.html

171 lines
8.1 KiB
HTML

<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('作业调度列表')" />
</head>
<body class="gray-bg">
<div class="container-div">
<div class="row">
<div class="col-sm-12 search-collapse">
<form id="formId">
<div class="select-list">
<ul>
<li>
<label>作业名称:</label>
<input type="text" name="jobName"/>
</li>
<!-- <li>
<label>作业类型:</label>
<select name="jobType" th:with="type=${@dict.getType('repository_type')}">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>-->
<li>
<label>状态:</label>
<select name="jobStatus" th:with="type=${@dict.getType('kettle_trans_status')}" >
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" ></option>
</select>
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
</li>
</ul>
</div>
</form>
</div>
<div class="btn-group-sm" id="toolbar" role="group">
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="kettle:job:add">
<i class="fa fa-plus"></i> 添加
</a>
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="kettle:job:edit">
<i class="fa fa-edit"></i> 修改
</a>
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="kettle:job:remove">
<i class="fa fa-remove"></i> 删除
</a>
<!-- <a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="kettle:job:export">
<i class="fa fa-download"></i> 导出
</a>-->
</div>
<div class="col-sm-12 select-table table-striped">
<table id="bootstrap-table"></table>
</div>
</div>
</div>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var editFlag = [[${@permission.hasPermi('kettle:job:edit')}]];
var removeFlag = [[${@permission.hasPermi('kettle:job:remove')}]];
var jobTypeDatas = [[${@dict.getType('repository_type')}]];
var logFlag=[[${@permission.hasPermi('kettle:job:log')}]];
var runFlag=[[${@permission.hasPermi('kettle:job:run')}]];
var quartzFlag=[[${@permission.hasPermi('kettle:job:setquartz')}]];
var prefix = ctx + "kettle/job";
var logLevel = [[${@dict.getType('kettle_log_level')}]];
var jobStatus = [[${@dict.getType('kettle_trans_status')}]];
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
detailUrl: prefix + "/detail/{id}",
modalName: "作业调度",
columns: [{
checkbox: true
},
{
field: 'id',
title: '',
visible: false
},
{
field: 'jobName',
title: '作业名称'
},
{
field: 'jobDescription',
title: '描述'
},
/* {
field: 'jobType',
title: '作业类型(file,ftp,sf)',
formatter: function(value, row, index) {
return $.table.selectDictLabel(jobTypeDatas, value);
}
},*/
{
field: 'jobPath',
title: '路径'
},
/* {
field: 'jobRepositoryId',
title: '资源库id'
},*/
{
field: 'jobLogLevel',
title: '日志级别',
formatter: function(value, row, index) {
return $.table.selectDictLabel(logLevel, value);
}
},
{
field: 'jobStatus',
title: '状态',
formatter: function(value, row, index) {
return $.table.selectDictLabel(jobStatus, value);
}
},
{
field: 'lastSucceedTime',
title: '最后成功时间',
},
/* {
field: 'isDel',
title: '是否删除'
},
{
field: 'isMonitorEnabled',
title: '是否监控'
},*/
{
field: 'roleKey',
title: '可执行角色'
},
{
title: '操作',
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>删除</a>');
actions.push("<a class='btn btn-default btn-xs " + runFlag + "' href='javascript:void(0)' onclick='runJobNow(" + row.id + ")'><i class='fa fa-play-circle-o'></i>立即运行</a> ");
actions.push("<a class='btn btn-default btn-xs " + quartzFlag + "' href='javascript:void(0)' onclick='setJobQuartz(" + row.id + ")'><i class='glyphicon glyphicon-time'></i>设置定时</a>");
// actions.push("<a class='btn btn-default btn-xs " + logFlag + "' href='javascript:void(0)' onclick='$.operate.detail(" + row.id + ")'><i class='fa fa-search'></i>运行日志</a> ");
actions.push('<a class="btn btn-default btn-xs ' + logFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.id + '\')"><i class="fa fa-search"></i>运行日志</a> ');
return actions.join('');
}
}]
};
$.table.init(options);
});
/* 立即执行一次trans */
function runJobNow(id) {
$.modal.confirm("确认要立即执行一次该作业吗?", function() {
$.operate.post(prefix + "/run", { "id": id});
})
}
/*设置定时任务*/
function setJobQuartz(id){
$.modal.open('添加定时任务', prefix + "/jobQuartz/"+id, '900', '500');
}
</script>
</body>
</html>