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.
98 lines
2.5 KiB
98 lines
2.5 KiB
<!DOCTYPE html>
|
|
<!-- saved from url=(0052)http://getbootstrap.com/docs/4.0/examples/dashboard/ -->
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>Dashboard Template for Bootstrap</title>
|
|
<!-- Bootstrap core CSS -->
|
|
<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet">
|
|
|
|
<!-- Custom styles for this template -->
|
|
<link th:href="@{/css/dashboard.css}" rel="stylesheet">
|
|
<style type="text/css">
|
|
/* Chart.js */
|
|
|
|
@-webkit-keyframes chartjs-render-animation {
|
|
from {
|
|
opacity: 0.99
|
|
}
|
|
to {
|
|
opacity: 1
|
|
}
|
|
}
|
|
|
|
@keyframes chartjs-render-animation {
|
|
from {
|
|
opacity: 0.99
|
|
}
|
|
to {
|
|
opacity: 1
|
|
}
|
|
}
|
|
|
|
.chartjs-render-monitor {
|
|
-webkit-animation: chartjs-render-animation 0.001s;
|
|
animation: chartjs-render-animation 0.001s;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
|
|
<!-- 顶部导航栏-->
|
|
<body>
|
|
<div th:replace="~{commons/commons::topbar}"></div>
|
|
<!--侧边导航栏-->
|
|
|
|
<div th:replace="~{commons/commons::sidebar(active='main.html')}"></div>
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script type="text/javascript" src="asserts/js/jquery-3.2.1.slim.min.js" ></script>
|
|
<script type="text/javascript" src="asserts/js/popper.min.js" ></script>
|
|
<script type="text/javascript" src="asserts/js/bootstrap.min.js" ></script>
|
|
|
|
<!-- Icons -->
|
|
<script type="text/javascript" src="asserts/js/feather.min.js" ></script>
|
|
<script>
|
|
feather.replace()
|
|
</script>
|
|
|
|
<!-- Graphs -->
|
|
<script type="text/javascript" src="asserts/js/Chart.min.js" ></script>
|
|
<script>
|
|
var ctx = document.getElementById("myChart");
|
|
var myChart = new Chart(ctx, {
|
|
type: 'line',
|
|
data: {
|
|
labels: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
|
|
datasets: [{
|
|
data: [15339, 21345, 18483, 24003, 23489, 24092, 12034],
|
|
lineTension: 0,
|
|
backgroundColor: 'transparent',
|
|
borderColor: '#007bff',
|
|
borderWidth: 4,
|
|
pointBackgroundColor: '#007bff'
|
|
}]
|
|
},
|
|
options: {
|
|
scales: {
|
|
yAxes: [{
|
|
ticks: {
|
|
beginAtZero: false
|
|
}
|
|
}]
|
|
},
|
|
legend: {
|
|
display: false,
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html> |