|
@@ -0,0 +1,135 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html>
|
|
|
+
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
|
|
+ <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
|
+ <title>流水线管理页</title>
|
|
|
+ <!-- Favicon-->
|
|
|
+ <link rel="icon" href="favicon.ico" type="image/x-icon">
|
|
|
+
|
|
|
+ <!-- Google Fonts -->
|
|
|
+ <link href="css/cyllic.css" rel="stylesheet" type="text/css">
|
|
|
+ <link href="css/mateial.css" rel="stylesheet" type="text/css">
|
|
|
+
|
|
|
+ <!-- Bootstrap Core Css -->
|
|
|
+ <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/4.0.0/css/bootstrap.min.css"
|
|
|
+ integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
|
+
|
|
|
+ <!-- Waves Effect Css -->
|
|
|
+ <link href="plugins/node-waves/waves.css" rel="stylesheet"/>
|
|
|
+
|
|
|
+ <!-- Animation Css -->
|
|
|
+ <link href="plugins/animate-css/animate.css" rel="stylesheet"/>
|
|
|
+
|
|
|
+ <!-- Morris Chart Css-->
|
|
|
+ <link href="plugins/morrisjs/morris.css" rel="stylesheet"/>
|
|
|
+
|
|
|
+ <!-- Custom Css -->
|
|
|
+ <link href="css/style.css" rel="stylesheet">
|
|
|
+
|
|
|
+ <!-- AdminBSB Themes. You can choose a theme from css/themes instead of get all themes -->
|
|
|
+ <link href="css/themes/all-themes.css" rel="stylesheet"/>
|
|
|
+
|
|
|
+ <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
|
|
|
+ <script src="https://cdn.bootcss.com/popper.js/1.12.9/umd/popper.min.js"
|
|
|
+ integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
|
|
|
+ crossorigin="anonymous"></script>
|
|
|
+ <script src="https://cdn.bootcss.com/bootstrap/4.0.0/js/bootstrap.min.js"
|
|
|
+ integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
|
|
|
+ crossorigin="anonymous"></script>
|
|
|
+
|
|
|
+ <link rel="icon" href="https://static.jianshukeji.com/highcharts/images/favicon.ico">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
+ <style>
|
|
|
+ /* css 代码 */
|
|
|
+ </style>
|
|
|
+ <script src="https://img.hcharts.cn/highcharts/highcharts.js"></script>
|
|
|
+ <script src="https://img.hcharts.cn/highcharts/modules/exporting.js"></script>
|
|
|
+ <script src="https://img.hcharts.cn/highcharts-plugins/highcharts-zh_CN.js"></script>
|
|
|
+ <script src="https://img.hcharts.cn/highcharts/themes/dark-unica.js"></script>
|
|
|
+ <script language="JavaScript">
|
|
|
+ function startTime()
|
|
|
+ {
|
|
|
+ var today=new Date();//定义日期对象
|
|
|
+ var yyyy = today.getFullYear();//通过日期对象的getFullYear()方法返回年
|
|
|
+ var MM = today.getMonth()+1;//通过日期对象的getMonth()方法返回年
|
|
|
+ var dd = today.getDate();//通过日期对象的getDate()方法返回年
|
|
|
+ var hh=today.getHours();//通过日期对象的getHours方法返回小时
|
|
|
+ var mm=today.getMinutes();//通过日期对象的getMinutes方法返回分钟
|
|
|
+ var ss=today.getSeconds();//通过日期对象的getSeconds方法返回秒
|
|
|
+ // 如果分钟或小时的值小于10,则在其值前加0,比如如果时间是下午3点20分9秒的话,则显示15:20:09
|
|
|
+ MM=checkTime(MM);
|
|
|
+ dd=checkTime(dd);
|
|
|
+ mm=checkTime(mm);
|
|
|
+ ss=checkTime(ss);
|
|
|
+ var day; //用于保存星期(getDay()方法得到星期编号)
|
|
|
+ if(today.getDay()==0) day = "星期日 "
|
|
|
+ if(today.getDay()==1) day = "星期一 "
|
|
|
+ if(today.getDay()==2) day = "星期二 "
|
|
|
+ if(today.getDay()==3) day = "星期三 "
|
|
|
+ if(today.getDay()==4) day = "星期四 "
|
|
|
+ if(today.getDay()==5) day = "星期五 "
|
|
|
+ if(today.getDay()==6) day = "星期六 "
|
|
|
+ document.getElementById('nowDateTimeSpan').innerHTML=yyyy+"-"+MM +"-"+ dd +" " + day+" " + hh+":"+mm+":"+ss;
|
|
|
+ setTimeout('startTime()',1000);//每一秒中重新加载startTime()方法
|
|
|
+ }
|
|
|
+
|
|
|
+ function checkTime(i)
|
|
|
+ {
|
|
|
+ if (i<10){
|
|
|
+ i="0" + i;
|
|
|
+ }
|
|
|
+ return i;
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+</head>
|
|
|
+
|
|
|
+<body class="" style="background-color: #17253f !important;" onload="startTime()">
|
|
|
+<div >
|
|
|
+ <nav class="navbar" style="background-color: red">
|
|
|
+ <div class="container-fluid">
|
|
|
+ <div class="navbar-header">
|
|
|
+ <a class="navbar-brand" href="index.html">工厂产能监控系统</a>
|
|
|
+ </div>
|
|
|
+ <div style="color: #ffffff"><img src="images/logo.jpg" style="width: 10%"> 深圳市度彼电子有限公司——</div>
|
|
|
+ <font color="#ffffff"><span id="nowDateTimeSpan"></span></font>
|
|
|
+ </div>
|
|
|
+ </nav>
|
|
|
+ <div class="container-fluid" style="margin-top: 20em">
|
|
|
+ <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="width: 30%">
|
|
|
+ 拉 <span class="caret"></span>
|
|
|
+ </button>
|
|
|
+ <ul class="dropdown-menu">
|
|
|
+ <li><a href="#">生产线1</a></li>
|
|
|
+ <li><a href="#">生产线2</a></li>
|
|
|
+ </ul>
|
|
|
+ <button type="button" class="btn btn-primary btn-lg btn-block" style="float: right;width: 30%">Block level button</button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="text-center" style="width: 30%;padding-top: 10em;margin: 0 auto" >
|
|
|
+
|
|
|
+ <button class="btn btn-block bg-pink waves-effect" type="submit" style="">登陆</button>
|
|
|
+
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+
|
|
|
+<!-- Jquery Core Js -->
|
|
|
+<script src="../../plugins/jquery/jquery.min.js"></script>
|
|
|
+
|
|
|
+<!-- Bootstrap Core Js -->
|
|
|
+<script src="../../plugins/bootstrap/js/bootstrap.js"></script>
|
|
|
+
|
|
|
+<!-- Waves Effect Plugin Js -->
|
|
|
+<script src="../../plugins/node-waves/waves.js"></script>
|
|
|
+
|
|
|
+<!-- Validation Plugin Js -->
|
|
|
+<script src="../../plugins/jquery-validation/jquery.validate.js"></script>
|
|
|
+
|
|
|
+<!-- Custom Js -->
|
|
|
+<script src="../../js/admin.js"></script>
|
|
|
+<script src="../../js/pages/examples/sign-in.js"></script>
|
|
|
+</body>
|
|
|
+
|
|
|
+</html>
|