zhangshuangnan лет назад: 8
Родитель
Сommit
965af95a13

+ 3 - 1
WebChart/js/zhongxin.js

@@ -42,8 +42,10 @@ $(document).ready(function(){
42 42
    	   			 $(con).each(function(i,n){
43 43
    	   			 	if(n.TypeName.indexOf('总计')!=-1){
44 44
    	   			 		$('#total').html(n.Count);
45
-   	   			 	}if(n.TypeName.indexOf('今日')!=-1){
45
+   	   			 	}if(n.TypeName.indexOf('受理')!=-1){
46 46
    	   			 		$('#today').html(n.Count);
47
+   	   			 	}if(n.TypeName.indexOf('交办')!=-1){
48
+   	   			 		$('#jiaoBan').html(n.Count);
47 49
    	   			 	}
48 50
    	   			 	if(!(n.TypeName.indexOf('总计')!=-1||n.TypeName.indexOf('今日')!=-1)){
49 51
    	   			 		$('<li>'+

+ 4 - 4
WebChart/zhongXinDaShuJu.html

@@ -23,10 +23,10 @@
23 23
 			.gdmap-r{
24 24
 				float: left;
25 25
 			    width: 64%;
26
-    margin-left: 1%;
26
+   				margin-left: 1%;
27 27
 			}
28 28
 			.tt_count{
29
-				color: #fff; width:49%; display: inline-block;text-align: center;margin: 15px 0;font-size: 14px;
29
+				color: #fff; width:32%; display: inline-block;text-align: center;margin: 15px 0;font-size: 14px;
30 30
 			}
31 31
 			.tt_count strong{
32 32
 				font-size: 20px;
@@ -75,8 +75,8 @@
75 75
 					</div>
76 76
 					<div class="gdmap">
77 77
 						<div class="tt_count" ><div>工单总计</div><p><strong id="total"></strong></p></div>
78
-						<div class="tt_count"><div>今日工单量</div><p><strong id="today"></strong></p></div>
79
-					
78
+						<div class="tt_count"><div>今日受理量</div><p><strong id="today"></strong></p></div>
79
+						<div class="tt_count" ><div>今日交办量</div><p><strong id="jiaoBan"></strong></p></div>
80 80
 						<div class="gdmap-m">
81 81
 							<img src="img/midmap_03.png" alt="" />
82 82
 						</div>

+ 28 - 0
WebUI/CallCenterWeb.UI/zhiShiKu/conDetail.html

@@ -0,0 +1,28 @@
1
+<!DOCTYPE html>
2
+<html>
3
+	<head>
4
+		<meta charset="UTF-8">
5
+		<script src="../Script/Common/huayi.load.js"></script>
6
+  		<script src="../Script/Common/huayi.config.js"></script>
7
+  		
8
+		<title></title>
9
+	</head>
10
+	<body>
11
+		<div class="container-fluid">
12
+			<div class="before">
13
+				
14
+			</div>
15
+			<div class="after">
16
+				
17
+				
18
+			</div>
19
+			
20
+		</div>
21
+	<script src="js/plugins/diff_match_patch/diff_match_patch.js"></script>
22
+    <script src="js/plugins/preetyTextDiff/jquery.pretty-text-diff.min.js"></script>
23
+    <script>
24
+    	var bid = helper.request.queryString("id");
25
+    		
26
+    </script>
27
+	</body>
28
+</html>

+ 11 - 2
WebUI/CallCenterWeb.UI/zhiShiKu/js/zhiShiKuShenHe.js

@@ -55,7 +55,8 @@ function setCode(val, row, index) {
55 55
 function oper(str) {
56 56
     if (str) {
57 57
         var con = helper.filter.Transcoding(str);
58
-        return con = con.substr(0, 10) + "...";
58
+        return '<div> '+ con.substr(0, 20) + "..."; +'</div>'
59
+        
59 60
     }
60 61
     else {
61 62
         return '';
@@ -146,4 +147,12 @@ var strs='<textarea class="detail" rows="5"  placeholder="请输入审核详情.
146 147
 				  }
147 148
 				});  
148 149
 	}
149
- 	
150
+
151
+function seeConDetail(bef,aft) {
152
+layer.open({
153
+	type: 2,
154
+	content: "conDetail.html?bef=" + bef +"&aft="+ aft, //iframe的url,no代表不显示滚动条
155
+	title: '查看内容详情',
156
+	area: ['60%', '60%'], //宽高
157
+	});
158
+}