mdserver-web/plugins/mongodb/index.html

84 lines
1.9 KiB
HTML
Raw Permalink Normal View History

2024-01-21 11:16:25 -05:00
<style>
.overflow_hide {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
vertical-align: middle;
2024-05-01 08:33:36 -04:00
}
.bingfa .bt-input-text {
width: 200px;
}
.inlineBlock {
display: inline-block;
}
2024-05-03 00:05:02 -04:00
.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;
}
2024-01-21 11:16:25 -05:00
</style>
2021-11-22 16:03:55 -05:00
<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>
2024-05-01 08:33:36 -04:00
<p onclick="mongoSetConfig();">配置修改</p>
<p onclick="pluginConfig('mongodb');">配置文件</p>
2024-05-05 06:03:40 -04:00
<p onclick="pluginConfig('mongodb','','config_key');">配置[KEY]</p>
2024-05-02 12:45:28 -04:00
<p onclick="dbList();">数据列表</p>
2023-12-16 03:30:34 -05:00
<p onclick="mongoDocStatus();">文档状态</p>
2024-05-01 08:35:23 -04:00
<p onclick="mongoStatus();">负载状态</p>
2023-12-16 04:01:49 -05:00
<p onclick="mongoReplStatus();">复制状态</p>
2021-11-22 16:03:55 -05:00
<p onclick="pluginLogs('mongodb','','run_log');">日志</p>
2025-09-17 00:44:37 -04:00
<p onclick="otherFunc();">维护功能</p>
2024-05-12 02:27:36 -04:00
<p onclick="mgdbReadme();">相关说明</p>
2021-11-22 16:03:55 -05:00
</div>
<div class="bt-w-con pd15">
2023-12-16 03:30:34 -05:00
<div class="soft-man-con" style="height:455px;overflow: auto;"></div>
2021-11-22 16:03:55 -05:00
</div>
</div>
</div>
2024-05-01 08:33:36 -04:00
<!-- <script type="text/javascript" src="/plugins/file?name=mongodb&f=js/mongodb.js"></script> -->
2021-11-22 16:03:55 -05:00
<script type="text/javascript">
2022-07-08 12:47:36 -04:00
//mongodb start
2023-12-16 03:30:34 -05:00
resetPluginWinHeight(530);
2024-05-03 00:05:02 -04:00
resetPluginWinWidth(800);
2023-12-16 07:59:29 -05:00
$.getScript('/plugins/file?name=mongodb&f=js/mongodb.js', function(){
2023-12-16 03:30:34 -05:00
pluginService('mongodb');
2022-07-08 12:47:36 -04:00
});
2021-11-22 16:03:55 -05:00
//mongodb end
</script>