Files
abot/admin/dashboard/templates/system_status.html
2025-05-27 09:10:41 +08:00

53 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% block title %}服务器监控 - 机器人管理后台{% endblock %}
{% block content %}
<!-- 接口文档 -->
<div>
<el-row :gutter="20">
<el-col :span="24">
<el-card shadow="hover">
<div slot="header">
<span>服务器监控</span>
</div>
<div class="iframe-container">
<iframe src="http://192.168.2.170:61208/" frameborder="0" width="100%" height="800px"></iframe>
</div>
</el-card>
</el-col>
</el-row>
</div>
{% endblock %}
{% block scripts %}
<script>
new Vue({
el: '#app',
mixins: [baseApp],
data() {
return {
// 设置当前菜单项
currentView: '14' // 使用一个新的索引,确保在菜单中能正确高亮
}
},
mounted() {
// 页面加载时设置当前视图
this.currentView = '14';
}
});
</script>
<style>
.iframe-container {
width: 100%;
overflow: hidden;
}
.iframe-container iframe {
border: none;
width: 100%;
min-height: 800px;
}
</style>
{% endblock %}