|
@@ -92,6 +92,7 @@ $(function() {
|
92
|
92
|
{
|
93
|
93
|
"data": 'jobId',
|
94
|
94
|
"visible" : true,
|
|
95
|
+ "width":'10%',
|
95
|
96
|
"render": function ( data, type, row ) {
|
96
|
97
|
var glueTypeTitle = row.glueType;
|
97
|
98
|
if ('GLUE_GROOVY'==row.glueType) {
|
|
@@ -117,12 +118,14 @@ $(function() {
|
117
|
118
|
{ "data": 'jobGroup', "visible" : false},
|
118
|
119
|
{
|
119
|
120
|
"data": 'triggerTime',
|
|
121
|
+ "width":'16%',
|
120
|
122
|
"render": function ( data, type, row ) {
|
121
|
123
|
return data?moment(new Date(data)).format("YYYY-MM-DD HH:mm:ss"):"";
|
122
|
124
|
}
|
123
|
125
|
},
|
124
|
126
|
{
|
125
|
127
|
"data": 'triggerCode',
|
|
128
|
+ "width":'12%',
|
126
|
129
|
"render": function ( data, type, row ) {
|
127
|
130
|
var html = data;
|
128
|
131
|
if (data == 200) {
|
|
@@ -137,18 +140,21 @@ $(function() {
|
137
|
140
|
},
|
138
|
141
|
{
|
139
|
142
|
"data": 'triggerMsg',
|
|
143
|
+ "width":'12%',
|
140
|
144
|
"render": function ( data, type, row ) {
|
141
|
145
|
return data?'<a class="logTips" href="javascript:;" >查看<span style="display:none;">'+ data +'</span></a>':"无";
|
142
|
146
|
}
|
143
|
147
|
},
|
144
|
148
|
{
|
145
|
149
|
"data": 'handleTime',
|
|
150
|
+ "width":'16%',
|
146
|
151
|
"render": function ( data, type, row ) {
|
147
|
152
|
return data?moment(new Date(data)).format("YYYY-MM-DD HH:mm:ss"):"";
|
148
|
153
|
}
|
149
|
154
|
},
|
150
|
155
|
{
|
151
|
156
|
"data": 'handleCode',
|
|
157
|
+ "width":'12%',
|
152
|
158
|
"render": function ( data, type, row ) {
|
153
|
159
|
var html = data;
|
154
|
160
|
if (data == 200) {
|
|
@@ -165,6 +171,7 @@ $(function() {
|
165
|
171
|
},
|
166
|
172
|
{
|
167
|
173
|
"data": 'handleMsg',
|
|
174
|
+ "width":'12%',
|
168
|
175
|
"render": function ( data, type, row ) {
|
169
|
176
|
return data?'<a class="logTips" href="javascript:;" >查看<span style="display:none;">'+ data +'</span></a>':"无";
|
170
|
177
|
}
|
|
@@ -172,7 +179,7 @@ $(function() {
|
172
|
179
|
{
|
173
|
180
|
"data": 'handleMsg' ,
|
174
|
181
|
"bSortable": false,
|
175
|
|
- "width": "8%" ,
|
|
182
|
+ "width":'10%',
|
176
|
183
|
"render": function ( data, type, row ) {
|
177
|
184
|
// better support expression or string, not function
|
178
|
185
|
return function () {
|