Files
ProxyPanel/resources/views/admin/node/monitor.blade.php
兔姬桑 ce9618236f 2.5.a 管理路由全面改写 与 代码拆分
1. 全面改写项目-管理面板的路由;
2. 拆分过于Contoller;
3. 优化了按钮过多的图表的显示;
4. 初步应用 Laravel的 表单验证功能;
5. 初步应用 Laravel的 component 功能 拆分/模块化前端代码;
6. 优化部分系统的判断逻辑;
7. 针对2.4.0以前的面板,追加辅助矫正数据库的sql文件;
2020-10-01 12:34:19 +08:00

129 lines
4.9 KiB
PHP

@extends('admin.layouts')
@section('content')
<div class="page-content container-fluid">
<div class="panel">
<div class="panel-heading">
<h2 class="panel-title">节点流量</h2>
</div>
<div class="alert alert-info alert-dismissible">
<button class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span><span class="sr-only">{{trans('home.close')}}</span>
</button>
<h4 class="block">{{$nodeName}}
<small class="pl-10">{{$nodeServer}}</small>
</h4>
<strong>提示:</strong> 如果无统计数据,请检查定时任务是否正常。
</div>
<div class="panel-body">
<div class="row">
<div class="col-md-6">
<canvas id="dailyChart" aria-label="小时流量图" role="img"></canvas>
</div>
<div class="col-md-6">
<canvas id="monthlyChart" aria-label="月流量图" role="img"></canvas>
</div>
</div>
</div>
</div>
</div>
@endsection
@section('script')
<script src="/assets/global/vendor/chart-js/Chart.min.js" type="text/javascript"></script>
<script type="text/javascript">
const dailyChart = new Chart(document.getElementById('dailyChart').getContext('2d'), {
type: 'line',
data: {
labels: {{$dayHours}},
datasets: [
{
fill: true,
backgroundColor: 'rgba(98, 168, 234, .1)',
borderColor: Config.colors('primary', 600),
pointRadius: 4,
borderDashOffset: 2,
pointBorderColor: '#fff',
pointBackgroundColor: Config.colors('primary', 600),
pointHoverBackgroundColor: '#fff',
pointHoverBorderColor: Config.colors('primary', 600),
data: {{$trafficHourly}},
}],
},
options: {
legend: {
display: false,
},
responsive: true,
scales: {
xAxes: [
{
display: true,
scaleLabel: {
display: true,
labelString: '小时',
},
}],
yAxes: [
{
display: true,
ticks: {
beginAtZero: true,
},
scaleLabel: {
display: true,
labelString: '{{trans('home.traffic_log_24hours')}}',
},
}],
},
},
});
const monthlyChart = new Chart(document.getElementById('monthlyChart').getContext('2d'), {
type: 'line',
data: {
labels: {{$monthDays}},
datasets: [
{
fill: true,
backgroundColor: 'rgba(98, 168, 234, .1)',
borderColor: Config.colors('primary', 600),
pointRadius: 4,
borderDashOffset: 2,
pointBorderColor: '#fff',
pointBackgroundColor: Config.colors('primary', 600),
pointHoverBackgroundColor: '#fff',
pointHoverBorderColor: Config.colors('primary', 600),
data: {{$trafficDaily}},
}],
},
options: {
legend: {
display: false,
},
responsive: true,
scales: {
xAxes: [
{
display: true,
scaleLabel: {
display: true,
labelString: '天',
},
}],
yAxes: [
{
display: true,
ticks: {
beginAtZero: true,
},
scaleLabel: {
display: true,
labelString: '{{trans('home.traffic_log_30days')}}',
},
}],
},
},
});
</script>
@endsection