提交 6169ac54 authored 作者: xueli.xue's avatar xueli.xue

Coding

上级 7d31e983
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
<div class="input-group-btn"> <div class="input-group-btn">
<button type="button" class="btn btn-info">备注</button> <button type="button" class="btn btn-info">备注</button>
</div> </div>
<input type="text" class="form-control" id="glueRemark" value="${jobName}" autocomplete="on" > <input type="text" class="form-control" id="glueRemark" value="" autocomplete="on" >
</div> </div>
</div> </div>
<div class="col-xs-2"> <div class="col-xs-2">
......
...@@ -68,17 +68,17 @@ ...@@ -68,17 +68,17 @@
<div class="box-header"> <div class="box-header">
<h3 class="box-title">调度列表</h3> <h3 class="box-title">调度列表</h3>
</div> </div>
<div class="box-body"> <div class="box-body" >
<table id="job_list" class="table table-bordered table-striped"> <table id="job_list" class="table table-bordered table-striped">
<thead> <thead>
<tr> <tr>
<th name="id" >id</th> <th name="id" >id</th>
<th name="jobGroup" >jobGroup</th> <th name="jobGroup" >jobGroup</th>
<th name="childJobKey" >任务Key</th> <th name="childJobKey" >JobKey</th>
<th name="jobDesc" >描述</th> <th name="jobDesc" >描述</th>
<th name="jobCron" >Cron</th>
<th name="executorHandler" >JobJandler</th> <th name="executorHandler" >JobJandler</th>
<th name="executorParam" >任务参数</th> <th name="executorParam" >任务参数</th>
<th name="jobCron" >Cron</th>
<th name="addTime" >新增时间</th> <th name="addTime" >新增时间</th>
<th name="updateTime" >更新时间</th> <th name="updateTime" >更新时间</th>
<th name="author" >负责人</th> <th name="author" >负责人</th>
......
...@@ -36,22 +36,24 @@ $(function() { ...@@ -36,22 +36,24 @@ $(function() {
}, },
{ {
"data": 'childJobKey', "data": 'childJobKey',
"width":'10%',
"visible" : true, "visible" : true,
"render": function ( data, type, row ) { "render": function ( data, type, row ) {
var jobKey = row.jobGroup + "_" + row.id; var jobKey = row.jobGroup + "_" + row.id;
return jobKey; return jobKey;
} }
}, },
{ "data": 'jobDesc', "visible" : true}, { "data": 'jobDesc', "visible" : true,"width":'20%'},
{ "data": 'jobCron', "visible" : true},
{ {
"data": 'executorHandler', "data": 'executorHandler',
"width":'20%',
"visible" : true, "visible" : true,
"render": function ( data, type, row ) { "render": function ( data, type, row ) {
return (row.glueSwitch > 0)? "GLUE模式" : data; return (row.glueSwitch > 0)? "GLUE模式" : data;
} }
}, },
{ "data": 'executorParam', "visible" : false}, { "data": 'executorParam', "visible" : false},
{ "data": 'jobCron', "visible" : true,"width":'10%'},
{ {
"data": 'addTime', "data": 'addTime',
"visible" : false, "visible" : false,
...@@ -66,11 +68,12 @@ $(function() { ...@@ -66,11 +68,12 @@ $(function() {
return data?moment(new Date(data)).format("YYYY-MM-DD HH:mm:ss"):""; return data?moment(new Date(data)).format("YYYY-MM-DD HH:mm:ss"):"";
} }
}, },
{ "data": 'author', "visible" : true}, { "data": 'author', "visible" : true, "width":'10%'},
{ "data": 'alarmEmail', "visible" : false}, { "data": 'alarmEmail', "visible" : false},
{ "data": 'glueSwitch', "visible" : false}, { "data": 'glueSwitch', "visible" : false},
{ {
"data": 'jobStatus', "data": 'jobStatus',
"width":'10%',
"visible" : true, "visible" : true,
"render": function ( data, type, row ) { "render": function ( data, type, row ) {
if ('NORMAL' == data) { if ('NORMAL' == data) {
...@@ -83,7 +86,9 @@ $(function() { ...@@ -83,7 +86,9 @@ $(function() {
return data; return data;
} }
}, },
{ "data": '操作' , {
"data": '操作' ,
"width":'15%',
"render": function ( data, type, row ) { "render": function ( data, type, row ) {
return function(){ return function(){
// status // status
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论