...
|
...
|
@@ -354,11 +354,11 @@ |
|
|
var tagids="";
|
|
|
var tags="";
|
|
|
$("#hostInfoForm input[name='appName']:checked").each(function(){
|
|
|
if(tagids.indexOf($(this).attr('value')+',')<0){
|
|
|
tagids += $(this).attr('value')+',';
|
|
|
if(tagids.indexOf($(this).attr('tagid')+',')<0){
|
|
|
tagids += $(this).attr('tagid')+',';
|
|
|
}
|
|
|
if(tags.indexOf($(this).attr('text')+',')<0){
|
|
|
tags += $(this).attr('text')+',';
|
|
|
if(tags.indexOf($(this).attr('value')+',')<0){
|
|
|
tags += $(this).attr('value')+',';
|
|
|
}
|
|
|
});
|
|
|
var cloudDetailType = $("#hostInfoForm #cloudDetailType").val();
|
...
|
...
|
@@ -451,11 +451,11 @@ |
|
|
var tagids="";
|
|
|
var tags="";
|
|
|
$("#tagsInfoForm input[name='appName']:checked").each(function(){
|
|
|
if(tagids.indexOf($(this).attr('value')+',')<0){
|
|
|
tagids += $(this).attr('value')+',';
|
|
|
if(tagids.indexOf($(this).attr('tagid')+',')<0){
|
|
|
tagids += $(this).attr('tagid')+',';
|
|
|
}
|
|
|
if(tags.indexOf($(this).attr('text')+',')<0){
|
|
|
tags += $(this).attr('text')+',';
|
|
|
if(tags.indexOf($(this).attr('value')+',')<0){
|
|
|
tags += $(this).attr('value')+',';
|
|
|
}
|
|
|
});
|
|
|
if(paramObj.hostIds == null || paramObj.hostIds.length == 0){
|
...
|
...
|
|