Browse Source

提交代码。

Signed-off-by: zouap <zouap@pcl.ac.cn>
tags/v1.22.4.1^2
zouap 3 years ago
parent
commit
f29ed86881
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      templates/repo/cloudbrain/show.tmpl

+ 6
- 4
templates/repo/cloudbrain/show.tmpl View File

@@ -56,7 +56,7 @@
margin:10px 5px ;
}
.tab_2_content {
min-height: 560px;
min-height: 460px;
margin-left: 10px;
}
.ac-grid {
@@ -497,9 +497,11 @@ td, th {
}
let extras= jsonObj["extras"];
if(extras != null){
html +="<p>" +extras["reason"] + "</p>";
html +="<p>" +extras["message"] + "</p>";
html +="<p>" +extras["action"] + "</p>";
for(var i=0; i < extras.length;i++){
html +="<p>" +extras[i]["reason"] + "</p>";
html +="<p>" +extras[i]["message"] + "</p>";
html +="<p>" +extras[i]["action"] + "</p>";
}
}
}
document.getElementById("info_display").innerHTML=html;


Loading…
Cancel
Save