Authored by xuhui

自动化测试,api默认必须跑

@@ -266,7 +266,11 @@ @@ -266,7 +266,11 @@
266 project_HTML += "</br>"; 266 project_HTML += "</br>";
267 } 267 }
268 project_HTML += "<div class='ckbox ckbox-primary' style='display: inline'>"; 268 project_HTML += "<div class='ckbox ckbox-primary' style='display: inline'>";
269 - project_HTML += " <input name='testProject' type='checkbox' id='" + array[i] + "' value='" + array[i] + "'/>"; 269 + if(array[i] == "Sustainable-Yohobuy-Api"){
  270 + project_HTML += " <input name='testProject' type='checkbox' disabled='true' checked='checked' id='" + array[i] + "' value='" + array[i] + "'/>";
  271 + }else{
  272 + project_HTML += " <input name='testProject' type='checkbox' id='" + array[i] + "' value='" + array[i] + "'/>";
  273 + }
270 project_HTML += "<label for='" + array[i] + "' style='width: 230px'>" + array[i] + "</label></div>"; 274 project_HTML += "<label for='" + array[i] + "' style='width: 230px'>" + array[i] + "</label></div>";
271 } 275 }
272 document.getElementById("test_div").innerHTML = project_HTML; 276 document.getElementById("test_div").innerHTML = project_HTML;