按钮type属性冲入fix

v1.7
xueli.xue 7 years ago
parent efba14745a
commit 901f665831

@ -103,9 +103,9 @@ $(function() {
// status
var pause_resume = "";
if ('NORMAL' == row.jobStatus) {
pause_resume = '<button class="btn btn-primary btn-xs job_operate" type="job_pause" type="button"></button> ';
pause_resume = '<button class="btn btn-primary btn-xs job_operate" _type="job_pause" type="button"></button> ';
} else if ('PAUSED' == row.jobStatus){
pause_resume = '<button class="btn btn-primary btn-xs job_operate" type="job_resume" type="button"></button> ';
pause_resume = '<button class="btn btn-primary btn-xs job_operate" _type="job_resume" type="button"></button> ';
}
// log url
var logUrl = base_url +'/joblog?jobId='+ row.id;
@ -130,12 +130,12 @@ $(function() {
' glueType="'+ row.glueType +'" '+
' childJobKey="'+ row.childJobKey +'" '+
'>'+
'<button class="btn btn-primary btn-xs job_operate" type="job_trigger" type="button"></button> '+
'<button class="btn btn-primary btn-xs job_operate" _type="job_trigger" type="button"></button> '+
pause_resume +
'<button class="btn btn-primary btn-xs" type="job_del" type="button" onclick="javascript:window.open(\'' + logUrl + '\')" ></button><br> '+
'<button class="btn btn-warning btn-xs update" type="button"></button> '+
codeBtn +
'<button class="btn btn-danger btn-xs job_operate" type="job_del" type="button"></button> '+
'<button class="btn btn-danger btn-xs job_operate" _type="job_del" type="button"></button> '+
'</p>';
return html;
@ -180,7 +180,7 @@ $(function() {
var url;
var needFresh = false;
var type = $(this).attr("type");
var type = $(this).attr("_type");
if ("job_pause" == type) {
typeName = "暂停";
url = base_url + "/jobinfo/pause";

Loading…
Cancel
Save