liuyifan лет назад: 5
Родитель
Сommit
2d5a67f424
2 измененных файлов с 56 добавлено и 0 удалено
  1. 25 0
      WebChart/index.html
  2. 31 0
      WebChart/timeLimit.html

+ 25 - 0
WebChart/index.html

@@ -41,5 +41,30 @@
41 41
 <script src="js/radialIndicator.js"></script>
42 42
 <script src="js/coment.js"></script>
43 43
 <script src="js/laiyuanqudao.js"></script>
44
+<script>
45
+    $(document).ready(function(){
46
+        loginTimeLimit()
47
+    });
48
+    function loginTimeLimit(){
49
+        $.ajax({
50
+            type:"get",
51
+            url: huayi.config.callcenter_url + "Login/GetAuAuthDate",
52
+            async:false,
53
+            success:function(res){
54
+                var res=$.parseJSON(res)
55
+                if(res.state== "success") {
56
+                } else {
57
+                    layer.confirm(res.message, {
58
+                        icon: 2,
59
+                        btn: ['确定'],
60
+                        yes:function (index, layero){
61
+                            window.location.href = "timeLimit.html";
62
+                        }
63
+                    });
64
+                }
65
+            }
66
+        });
67
+    }
68
+</script>
44 69
 </body>
45 70
 </html>

+ 31 - 0
WebChart/timeLimit.html

@@ -0,0 +1,31 @@
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
+</head>
11
+<body>
12
+<div class="navcon ">
13
+	<div class="navbox clearfix">
14
+	<p><img src="img/sqLogo.png" class="logo" alt="" />虞城12345数据展示</p>
15
+    <ul class="navl clearfix">
16
+        <li><a class="active" href="">来源渠道情况</a></li>
17
+        <li><a href="#">接单部门情况</a></li>
18
+        <li><a href="#">投诉举报情况</a></li>
19
+        <li><a href="#">话务数量情况</a></li>
20
+        <li><a href="#">中心大数据</a></li>
21
+    </ul>
22
+   </div>
23
+</div>
24
+<div class="qunzhong clearfix container-fluid">
25
+	<div class="col-md-12" >
26
+		<div class="biao-title">授权过期,请联系系统厂家</div>
27
+    </div>
28
+</div>
29
+<script src="js/jquery.min.js"></script>
30
+</body>
31
+</html>