liuyifan 5 anos atrás
pai
commit
e4b7bc3e03
2 arquivos alterados com 68 adições e 0 exclusões
  1. 25 0
      WebChart/index.html
  2. 43 0
      WebChart/timeLimit.html

+ 25 - 0
WebChart/index.html

@@ -104,5 +104,30 @@
104 104
 <script src="js/radialIndicator.js"></script>
105 105
 <script src="js/coment.js"></script>
106 106
 <script src="js/laiyuanqudao.js"></script>
107
+<script>
108
+	$(document).ready(function(){
109
+        loginTimeLimit()
110
+    });
111
+    function loginTimeLimit(){
112
+        $.ajax({
113
+            type:"get",
114
+            url: huayi.config.callcenter_url + "Login/GetAuAuthDate",
115
+            async:false,
116
+            success:function(res){
117
+                var res=$.parseJSON(res)
118
+                if(res.state== "success") {
119
+                } else {
120
+                    layer.confirm(res.message, {
121
+                        icon: 2,
122
+                        btn: ['确定'],
123
+                        yes:function (index, layero){
124
+                            window.location.href = "timeLimit.html";
125
+                        }
126
+                    });
127
+                }
128
+            }
129
+        });
130
+    }
131
+</script>
107 132
 </body>
108 133
 </html>

+ 43 - 0
WebChart/timeLimit.html

@@ -0,0 +1,43 @@
1
+<!DOCTYPE html>
2
+<html>
3
+<head lang="en">
4
+    <meta charset="UTF-8">
5
+    <title>永城大屏首页</title>
6
+     <script src="Script/Common/huayi.load.js"></script>
7
+    <script src="Script/Common/huayi.config.js"></script>
8
+    <link rel="stylesheet" href="css/bootstrap.min.css" />
9
+    <link rel="stylesheet" href="css/index.css"/>
10
+    <style>
11
+    	.qunzhong{
12
+    		width: 1300px;
13
+			margin: 0 auto;
14
+    	}
15
+        .biao-title {
16
+            border: 0;
17
+            text-align: center;
18
+            color: #fff;
19
+        }
20
+    </style>
21
+</head>
22
+<body>
23
+<div class="navcon ">
24
+	<div class="navbox clearfix">
25
+	<p><img src="img/sqLogo.png" class="logo" alt="" />永城12345数据展示</p>
26
+    <ul class="navl clearfix">
27
+        <li><a class="active" href="">来源渠道情况</a></li>
28
+        <li><a href="#">接单部门情况</a></li>
29
+        <li><a href="#">投诉举报情况</a></li>
30
+        <li><a href="#">话务数量情况</a></li>
31
+        <li><a href="#">中心大数据</a></li>
32
+        <!--<li><a href="fuWuZhiShi.html">服务知识</a></li>-->
33
+    </ul>
34
+   </div>
35
+</div>
36
+<div class="qunzhong clearfix container-fluid">
37
+    <div class="col-md-12" >
38
+		<div class="biao-title">授权过期,请联系系统厂家</div>
39
+    </div>
40
+</div>
41
+<script src="js/jquery.min.js"></script>
42
+</body>
43
+</html>