Browse Source

修改 时间显示 、导播功能

zhangshuangnan 8 years ago
parent
commit
bbee29d52d

+ 11 - 1
WebUI/CallCenterWeb.UI/TelCall/BlackList.html

@@ -80,7 +80,7 @@
80 80
 							<th data-field="F_RemoveTime">结束时间</th>
81 81
 							<th data-field="F_Describe">说明</th>
82 82
                             <th data-field="F_UserName">添加坐席</th>
83
-                            <th data-field="F_CreateTime">添加时间</th>
83
+                            <th data-field="F_CreateTime" data-formatter="addTime">添加时间</th>
84 84
 						</tr>
85 85
 					</thead>
86 86
 					<tbody id="tbody"></tbody>
@@ -374,6 +374,16 @@
374 374
 			        return '';
375 375
 			    }
376 376
 			}
377
+			
378
+			
379
+			function addTime(val,row){
380
+				if(row.F_UserName){
381
+					return '<div>'+ val +'</div>'
382
+				}else{
383
+					return '<div></div>'
384
+				}
385
+			}
386
+			
377 387
 		</script>
378 388
 
379 389
 	</body>

+ 8 - 4
WebUI/CallCenterWeb.UI/TelCall/CallRecord.html

@@ -129,9 +129,9 @@
129 129
          .seach-box ul{
130 130
          	padding-left: 0;
131 131
          }
132
-        .seach-box input{
132
+        /*.seach-box input{
133 133
         	width: 122px;
134
-        }
134
+        }*/
135 135
     </style>
136 136
 </head>
137 137
 
@@ -243,12 +243,16 @@
243 243
             laydate.skin('blue');
244 244
             laydate({
245 245
                 elem: '#start',
246
-                event: 'focus'
246
+                event: 'focus',
247
+                istime:true,
248
+                format:'YYYY-MM-DD hh:mm:ss'
247 249
             });
248 250
 
249 251
             laydate({
250 252
                 elem: '#end',
251
-                event: 'focus'
253
+                event: 'focus',
254
+                istime:true,
255
+                format:'YYYY-MM-DD hh:mm:ss'
252 256
             });
253 257
             /*获取选中行对象*/
254 258
             $('#list').on("click-row.bs.table", function (e, row, ele) {

+ 0 - 1
WebUI/CallCenterWeb.UI/chatWith.html

@@ -7,7 +7,6 @@
7 7
 		<link rel="stylesheet" href="css/init.css" />
8 8
 		<link rel="stylesheet" href="css/chat.css" />
9 9
 		<title>聊天窗口</title>
10
-	
11 10
 	</head>
12 11
 	<body>
13 12
 		<div id="chat">

+ 13 - 1
WebUI/CallCenterWeb.UI/index.html

@@ -990,6 +990,18 @@
990 990
                                     <i class="iconfont fa-5x Logout"></i>
991 991
                                     <p>签出</p>
992 992
                                 </li>
993
+                                <li datafun="Consult">
994
+                                    <i class="iconfont fa-5x Consult"></i>
995
+                                    <p>协商呼叫 </p>
996
+                                </li>
997
+                                <li datafun="ConfirmTransfer">
998
+                                    <i class="iconfont fa-5x ConfirmTransfer"></i>
999
+                                    <p> 确认转移 </p>
1000
+                                </li>
1001
+                                <li datafun="TurnIvr">
1002
+                                    <i class="iconfont fa-5x TurnIvr"></i>
1003
+                                    <p> 转IVR </p>
1004
+                                </li>
993 1005
                             </ul>
994 1006
                         </div>
995 1007
                         <div class="nav closed">
@@ -1343,7 +1355,7 @@
1343 1355
                                             联系电话:
1344 1356
                                         </span>
1345 1357
                                         <span class="col-sm-3">
1346
-                                            <input type="text" class="email" id="conphone" />
1358
+                                            <input type="text" class="lxdh" id="conphone" />
1347 1359
                                         </span>
1348 1360
                                     </div>
1349 1361
                                     <div class="form-group clearfix">

+ 16 - 0
WebUI/CallCenterWeb.UI/js/index.js

@@ -268,6 +268,22 @@ $(document).ready(function () {
268 268
                         whtp();
269 269
                         //obj.DestinationNumber = "1012";
270 270
                         break; //转移
271
+                    case "Consult"://协商呼叫
272
+ 						$("#hidwhtype").val(fun);
273
+                        whtp();
274
+//						obj.Callee = "1008"; 
275
+						obj.Caller = $.cookie("extno"); //操作人分机号
276
+                        Send();
277
+                        break; 
278
+                    case "ConfirmTransfer"://确认转移
279
+						obj.EndParmer = "1"; 
280
+                        Send();
281
+                        break; 
282
+                    case "TurnIvr"://转IVR
283
+						obj.IvrName = "TurnIvr";
284
+						obj.IvrPos = "1"; 
285
+                        Send();
286
+                        break; 
271 287
                     default:
272 288
                         Send();
273 289
                         break;

+ 4 - 3
WebUI/CallCenterWeb.UI/js/main.js

@@ -218,7 +218,6 @@ function LoginBack() {
218 218
 function LogoutBack() {
219 219
     $("#top-search li i").removeClass("active");
220 220
     $(".Login").addClass("active");
221
-
222 221
     $(".zxzt").removeClass("bl").addClass("br");
223 222
     $(".fwzt").removeClass("bl").addClass("br");
224 223
     $(".hwzt").text('');
@@ -540,6 +539,10 @@ function RecordPathBack(data) {
540 539
         })
541 540
     }
542 541
 }
542
+
543
+
544
+
545
+
543 546
 //在线坐席信息
544 547
 function GetAgentListBack(data) {
545 548
     console.log(data)
@@ -603,8 +606,6 @@ function GetAgentListBack(data) {
603 606
             })
604 607
         }
605 608
     });
606
-
607
-
608 609
 }
609 610
 //获取当前的日期时间 格式“yyyy-MM-dd HH:mm:ss”
610 611
 function getNowFormatDate() {

+ 0 - 1
WebUI/CallCenterWeb.UI/widgets.html

@@ -764,7 +764,6 @@
764 764
 							exporting: {
765 765
 								enabled: false
766 766
 							},
767
-
768 767
 							title: {
769 768
 								text: ''
770 769
 							},