diff --git a/plugins/solr/js/solr.js b/plugins/solr/js/solr.js
index 73d883e83..47f8b6ce9 100755
--- a/plugins/solr/js/solr.js
+++ b/plugins/solr/js/solr.js
@@ -59,8 +59,9 @@ function collectionManagement(){
con += '
'+
'' + list[i]['name']+' | ' +
'\
- 命令\
- | 删除 | \
+ 命令 \
+ | 配置 \
+ | 删除 \
';
}
@@ -136,7 +137,20 @@ function removeCollection(name){
setTimeout(function(){collectionManagement();},2000);
});
});
+}
+
+
+function confCollection(name){
+ var html = '';
+ html += '';
+ html += '';
+ var loadOpen = layer.open({
+ type: 1,
+ title: '['+name+']配置设置',
+ area: '240px',
+ content:''+html+'
'
+ });
}