...
|
...
|
@@ -239,7 +239,7 @@ |
|
|
_PAGE_SELECT_DB_INDEX=0;
|
|
|
$("#dataSourceInfo").empty();
|
|
|
for(var i =0;i<_PAGE_REDIS_INFO_MAPS[prop].length;i++){
|
|
|
$("#dataSourceInfo").append("<option value="+_PAGE_REDIS_INFO_MAPS[prop][i].id+">" + _PAGE_REDIS_INFO_MAPS[prop][i].ip + "</option>");
|
|
|
$("#dataSourceInfo").append("<option value="+_PAGE_REDIS_INFO_MAPS[prop][i].ip+" data-sign="+_PAGE_REDIS_INFO_MAPS[prop][i].port+">" + _PAGE_REDIS_INFO_MAPS[prop][i].ip+":"+ _PAGE_REDIS_INFO_MAPS[prop][i].port + "</option>");
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
@@ -263,7 +263,7 @@ |
|
|
return;
|
|
|
}
|
|
|
var param={};
|
|
|
param.dataSourceInfo=$.trim($("#dataSourceInfo option:selected").val());
|
|
|
param.dataSourceInfo=$.trim($("#dataSourceInfo option:selected").text());
|
|
|
param.cmdContent=queryThings;
|
|
|
var select_tmp=queryThings.toLowerCase();
|
|
|
if(queryThings.toLowerCase().indexOf("select")>=0){
|
...
|
...
|
|