This commit is contained in:
Mr Chen 2024-05-12 14:27:36 +08:00
parent 2f65839b9a
commit 00fa001c91
2 changed files with 10 additions and 0 deletions

View File

@ -63,6 +63,7 @@
<p onclick="mongoStatus();">负载状态</p>
<p onclick="mongoReplStatus();">复制状态</p>
<p onclick="pluginLogs('mongodb','','run_log');">日志</p>
<p onclick="mgdbReadme();">相关说明</p>
</div>
<div class="bt-w-con pd15">
<div class="soft-man-con" style="height:455px;overflow: auto;"></div>

View File

@ -1204,3 +1204,12 @@ function importDbExternal(file,name){
});
}
function mgdbReadme(){
var readme = '<ul class="help-info-text c7">';
readme += '<li>认证同步说明</li>';
readme += '<li>root/用户,配置Key完全一致才能同步。</li>';
readme += '</ul>';
$('.soft-man-con').html(readme);
}