123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Sa-Admin 控制台</title>
- <meta charset="utf-8">
- <meta name="viewport"
- content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
- <!-- 所有的 css & js 资源 -->
- <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
- <link rel="stylesheet" href="../../static/sa.css">
- <style type="text/css">
- .vue-box {
- margin: 0;
- padding: 0;
- height: 100%;
- }
- .el-card {
- border-radius: 0px;
- border: 1px #ddd solid;
- margin-bottom: 14px;
- }
- .s-row {
- /* background-color: antiquewhite; */
- padding: 0 14px;
- padding-bottom: 0px;
- }
- .s-row-1 {
- padding-top: 14px;
- }
- .s-row-2 {
- /* margin-top: -10px; */
- }
- .s-row-2 .el-card .el-card__body {
- height: 250px;
- }
- .s-row-3 .el-card {
- /* height: 100%; */
- }
- .echarts-div {
- height: 100%;
- }
- .s-row-3 .el-alert {
- margin-bottom: 14px;
- }
- </style>
- </head>
- <body>
- <div class="vue-box" style="height: 980px;width: 100%;">
- <div style=" text-align: center;
- margin-top: 113px;
- font-size: 60px;
- letter-spacing: 30px;">
- 欢迎使用场站管理系统
- </div>
- </div>
- <script src="../../static/kj/vue.min.js"></script>
- <script src="../../static/kj/element-ui/index.js"></script>
- <script src="../../static/kj/httpVueLoader.js"></script>
- <script src="../../static/kj/jquery.min.js"></script>
- <script src="../../static/kj/layer/layer.js"></script>
- <!-- <script src="https://unpkg.com/echarts@4.6.0/dist/echarts-en.min.js"></script> -->
- <script src="../../static/sa.js"></script>
- <script type="text/javascript">
- var app = new Vue({
- components: {
- 'com-sta-data': httpVueLoader('com-sta-data.vue'),
- 'com-chart-1': httpVueLoader('com-chart-1.vue'),
- 'com-chart-2': httpVueLoader('com-chart-2.vue'),
- 'com-chart-3': httpVueLoader('com-chart-3.vue'),
- 'com-stack': httpVueLoader('com-stack.vue'),
- 'com-update-log': httpVueLoader('com-update-log.vue'),
- 'com-origin': httpVueLoader('com-origin.vue'),
- // 'com-intro': httpVueLoader('com-intro.vue'),
- },
- el: '.vue-box',
- data: {},
- methods: {},
- mounted: function() {}
- })
- // 设置监听,改变窗口大小时重绘图表
- window.myChartList = [];
- window.onresize = function() {
- myChartList.forEach(function(myChart) {
- myChart.resize();
- })
- }
- </script>
- </body>
- </html>
|