From 128455fac01d96aebd68f1ebdee6f991ee98705b Mon Sep 17 00:00:00 2001 From: midoks Date: Thu, 1 Aug 2019 22:09:07 +0800 Subject: [PATCH] Update solr.js --- plugins/solr/js/solr.js | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) 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+'
' + }); }