|
|
|
@@ -135,7 +135,7 @@ socket.onmessage = function (e) { |
|
|
|
} |
|
|
|
else if(record.OpType == "25" || record.OpType == "29"){ |
|
|
|
html += recordPrefix + actionName; |
|
|
|
html += " <a href=\"" + getTaskLink(record) + "\" rel=\"nofollow\">" + record.Content + "</a>" |
|
|
|
html += " <a href=\"" + getTaskLink(record) + "\" rel=\"nofollow\">" + record.RefName + "</a>" |
|
|
|
} |
|
|
|
else{ |
|
|
|
continue; |
|
|
|
@@ -158,7 +158,7 @@ function getTaskLink(record){ |
|
|
|
if(record.OpType == 24){ |
|
|
|
return re + "/datasets?type=" + record.Content; |
|
|
|
}else if(record.OpType == 25){ |
|
|
|
return re + "/cloudbrain/" + record.RefName; |
|
|
|
return re + "/cloudbrain/" + record.Content; |
|
|
|
}else if(record.OpType == 26){ |
|
|
|
return re + "/modelarts/notebook/" + record.Content; |
|
|
|
}else if(record.OpType == 27){ |
|
|
|
@@ -166,7 +166,7 @@ function getTaskLink(record){ |
|
|
|
}else if(record.OpType == 28){ |
|
|
|
return re + "/modelarts/inference-job/" + record.Content; |
|
|
|
}else if(record.OpType == 29){ |
|
|
|
return re + "/cloudbrain/benchmark/" + record.RefName; |
|
|
|
return re + "/cloudbrain/benchmark/" + record.Content; |
|
|
|
}else if(record.OpType == 30){ |
|
|
|
return re + "/modelmanage/show_model_info?name=" + record.RefName; |
|
|
|
} |
|
|
|
|