Authored by qinchao

主机管理

@@ -123,7 +123,7 @@ @@ -123,7 +123,7 @@
123 if(n>0&&n%6==0){ 123 if(n>0&&n%6==0){
124 contentHtml+='</br>'; 124 contentHtml+='</br>';
125 } 125 }
126 - contentHtml+='<input type="checkbox" name="appName" onchange="autoHostName();" text="'+value.groupName+'" value="'+value.id+'">' +value.groupName+'&nbsp;&nbsp;'; 126 + contentHtml+='<input type="checkbox" name="appName" onchange="autoHostName();" tagid="'+value.id+'" value="'+value.groupName+'">' +value.groupName+'&nbsp;&nbsp;';
127 if(value.children!=null&&value.children.length>0){ 127 if(value.children!=null&&value.children.length>0){
128 contentHtml += constructTr(value.children); 128 contentHtml += constructTr(value.children);
129 } 129 }
@@ -354,11 +354,11 @@ @@ -354,11 +354,11 @@
354 var tagids=""; 354 var tagids="";
355 var tags=""; 355 var tags="";
356 $("#hostInfoForm input[name='appName']:checked").each(function(){ 356 $("#hostInfoForm input[name='appName']:checked").each(function(){
357 - if(tagids.indexOf($(this).attr('value')+',')<0){  
358 - tagids += $(this).attr('value')+','; 357 + if(tagids.indexOf($(this).attr('tagid')+',')<0){
  358 + tagids += $(this).attr('tagid')+',';
359 } 359 }
360 - if(tags.indexOf($(this).attr('text')+',')<0){  
361 - tags += $(this).attr('text')+','; 360 + if(tags.indexOf($(this).attr('value')+',')<0){
  361 + tags += $(this).attr('value')+',';
362 } 362 }
363 }); 363 });
364 var cloudDetailType = $("#hostInfoForm #cloudDetailType").val(); 364 var cloudDetailType = $("#hostInfoForm #cloudDetailType").val();
@@ -451,11 +451,11 @@ @@ -451,11 +451,11 @@
451 var tagids=""; 451 var tagids="";
452 var tags=""; 452 var tags="";
453 $("#tagsInfoForm input[name='appName']:checked").each(function(){ 453 $("#tagsInfoForm input[name='appName']:checked").each(function(){
454 - if(tagids.indexOf($(this).attr('value')+',')<0){  
455 - tagids += $(this).attr('value')+','; 454 + if(tagids.indexOf($(this).attr('tagid')+',')<0){
  455 + tagids += $(this).attr('tagid')+',';
456 } 456 }
457 - if(tags.indexOf($(this).attr('text')+',')<0){  
458 - tags += $(this).attr('text')+','; 457 + if(tags.indexOf($(this).attr('value')+',')<0){
  458 + tags += $(this).attr('value')+',';
459 } 459 }
460 }); 460 });
461 if(paramObj.hostIds == null || paramObj.hostIds.length == 0){ 461 if(paramObj.hostIds == null || paramObj.hostIds.length == 0){
@@ -176,7 +176,7 @@ @@ -176,7 +176,7 @@
176 if(n>0&&n%6==0){ 176 if(n>0&&n%6==0){
177 contentHtml+='</br>'; 177 contentHtml+='</br>';
178 } 178 }
179 - contentHtml+='<input type="checkbox" name="appName" onchange="autoHostName();" text="'+value.groupName+'" value="'+value.id+'">' +value.groupName+'&nbsp;&nbsp;'; 179 + contentHtml+='<input type="checkbox" name="appName" onchange="autoHostName();" tagid="'+value.id+'" value="'+value.groupName+'">' +value.groupName+'&nbsp;&nbsp;';
180 if(value.children!=null&&value.children.length>0){ 180 if(value.children!=null&&value.children.length>0){
181 contentHtml += constructTr(value.children); 181 contentHtml += constructTr(value.children);
182 } 182 }