Simple Linux Panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mdserver-web/plugins/mongodb/index.html

82 lines
1.8 KiB

1 year ago
<style>
.overflow_hide {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
vertical-align: middle;
1 year ago
}
.bingfa .bt-input-text {
width: 200px;
}
.inlineBlock {
display: inline-block;
}
1 year ago
.db_list{
padding: 0px 0 10px 0;
font-size: 13px;
line-height: 35px;
height: 45px;
}
.db_list a{
margin-right: 15px;
color: #555;
font-weight: 600;
}
.db_list span:nth-child(1){
display: block;
float: left;
padding-left: 15px;
background: #ececec;
border-radius: 3px;
}
#db_tools button {
margin-right: 10px;
}
#db_tools button:last-child{
margin-right: 0;
}
.conf_p span {
display: inline-block;
margin-right: 10px;
width: 115px;
text-align: right;
}
1 year ago
</style>
4 years ago
<div class="bt-form">
<div class="bt-w-main">
<div class="bt-w-menu">
<p class="bgw" onclick="pluginService('mongodb');">服务</p>
<p onclick="pluginInitD('mongodb');">自启动</p>
1 year ago
<p onclick="mongoSetConfig();">配置修改</p>
<p onclick="pluginConfig('mongodb');">配置文件</p>
1 year ago
<p onclick="pluginConfig('mongodb','','config_key');">配置[KEY]</p>
1 year ago
<p onclick="dbList();">数据列表</p>
1 year ago
<p onclick="mongoDocStatus();">文档状态</p>
<p onclick="mongoStatus();">负载状态</p>
1 year ago
<p onclick="mongoReplStatus();">复制状态</p>
4 years ago
<p onclick="pluginLogs('mongodb','','run_log');">日志</p>
</div>
<div class="bt-w-con pd15">
1 year ago
<div class="soft-man-con" style="height:455px;overflow: auto;"></div>
4 years ago
</div>
</div>
</div>
1 year ago
<!-- <script type="text/javascript" src="/plugins/file?name=mongodb&f=js/mongodb.js"></script> -->
4 years ago
<script type="text/javascript">
3 years ago
//mongodb start
1 year ago
resetPluginWinHeight(530);
1 year ago
resetPluginWinWidth(800);
$.getScript('/plugins/file?name=mongodb&f=js/mongodb.js', function(){
1 year ago
pluginService('mongodb');
3 years ago
});
4 years ago
//mongodb end
</script>