|
@@ -114,14 +114,14 @@ $(function() {
|
114
|
114
|
{ "data": 'jobGroup', "visible" : false},
|
115
|
115
|
{
|
116
|
116
|
"data": 'triggerTime',
|
117
|
|
- "width":'16%',
|
|
117
|
+ "width":'20%',
|
118
|
118
|
"render": function ( data, type, row ) {
|
119
|
119
|
return data?moment(new Date(data)).format("YYYY-MM-DD HH:mm:ss"):"";
|
120
|
120
|
}
|
121
|
121
|
},
|
122
|
122
|
{
|
123
|
123
|
"data": 'triggerCode',
|
124
|
|
- "width":'12%',
|
|
124
|
+ "width":'10%',
|
125
|
125
|
"render": function ( data, type, row ) {
|
126
|
126
|
var html = data;
|
127
|
127
|
if (data == 200) {
|
|
@@ -136,21 +136,21 @@ $(function() {
|
136
|
136
|
},
|
137
|
137
|
{
|
138
|
138
|
"data": 'triggerMsg',
|
139
|
|
- "width":'12%',
|
|
139
|
+ "width":'10%',
|
140
|
140
|
"render": function ( data, type, row ) {
|
141
|
141
|
return data?'<a class="logTips" href="javascript:;" >'+ I18n.system_show +'<span style="display:none;">'+ data +'</span></a>':I18n.system_empty;
|
142
|
142
|
}
|
143
|
143
|
},
|
144
|
144
|
{
|
145
|
145
|
"data": 'handleTime',
|
146
|
|
- "width":'16%',
|
|
146
|
+ "width":'20%',
|
147
|
147
|
"render": function ( data, type, row ) {
|
148
|
148
|
return data?moment(new Date(data)).format("YYYY-MM-DD HH:mm:ss"):"";
|
149
|
149
|
}
|
150
|
150
|
},
|
151
|
151
|
{
|
152
|
152
|
"data": 'handleCode',
|
153
|
|
- "width":'12%',
|
|
153
|
+ "width":'10%',
|
154
|
154
|
"render": function ( data, type, row ) {
|
155
|
155
|
var html = data;
|
156
|
156
|
if (data == 200) {
|
|
@@ -167,7 +167,7 @@ $(function() {
|
167
|
167
|
},
|
168
|
168
|
{
|
169
|
169
|
"data": 'handleMsg',
|
170
|
|
- "width":'12%',
|
|
170
|
+ "width":'10%',
|
171
|
171
|
"render": function ( data, type, row ) {
|
172
|
172
|
return data?'<a class="logTips" href="javascript:;" >'+ I18n.system_show +'<span style="display:none;">'+ data +'</span></a>':I18n.system_empty;
|
173
|
173
|
}
|