Przeglądaj źródła

心连心大屏,pc,微信问题修复

miaofuhao 6 lat temu
rodzic
commit
cedbada45d

+ 16 - 7
CallCenterWeb.UI/WorkOrder/AddWorkOrder.html

@@ -319,6 +319,9 @@
319 319
 				width: 100%;
320 320
 				height: calc(100% - 22px);
321 321
 			}
322
+			.Sampling{
323
+				display: none;
324
+			}
322 325
 		</style>
323 326
 	</head>
324 327
 
@@ -834,27 +837,33 @@
834 837
 						<div class="form-group col-md-12 clearfix">
835 838
 							<label class="col-md-2">超时时限:</label>
836 839
 							<div id="dddd" class="col-md-6 r_order_type  designate">
837
-								<label class="radio-inline">
840
+								<label class="radio-inline noSampling">
838 841
 								   <input type="radio" name="error" value="12" checked="checked"> 12小时
839 842
 								</label>
840
-								<label class="radio-inline">
843
+								<label class="radio-inline noSampling">
841 844
 								   <input type="radio" name="error" value="24" > 24小时
842 845
 								</label>
843
-								<label class="radio-inline">
846
+								<label class="radio-inline noSampling">
844 847
 								   <input type="radio" name="error" value="36" > 36小时
845 848
 								</label>
846
-								<label class="radio-inline">
849
+								<label class="radio-inline noSampling">
847 850
 								   <input type="radio" name="error" value="48" > 48小时
848 851
 								</label>
849
-								<label class="radio-inline">
852
+								<label class="radio-inline noSampling">
850 853
 								   <input type="radio" name="error" value="72" > 72小时
851 854
 								</label>
852
-								<label class="radio-inline">
855
+								<label class="radio-inline noSampling">
853 856
 								   <input type="radio" name="error" value="120" > 5天
854 857
 								</label>
855
-								<label class="radio-inline">
858
+								<label class="radio-inline noSampling">
856 859
 								   <input type="radio" name="error" value="168" > 7天
857 860
 								</label>
861
+								<label class="radio-inline Sampling">
862
+								   <input type="radio" name="error" value="720" > 1个月
863
+								</label>
864
+								<label class="radio-inline Sampling">
865
+								   <input type="radio" name="error" value="2160" > 3个月
866
+								</label>
858 867
 							</div>
859 868
 						</div>
860 869
 						<div class="form-group col-md-12 clearfix codeDiv">

+ 12 - 0
CallCenterWeb.UI/callScreen/call.js

@@ -2533,6 +2533,9 @@ $('.r_order_type').find('input[type="radio"]').on('change', function() {
2533 2533
 		$('#Page').hide();
2534 2534
 		$('#wlbm').hide();
2535 2535
 		$('#wlmcc').hide();
2536
+		$('.noSampling').show();
2537
+				$('.Sampling').hide();
2538
+				$("#dddd input[type=radio][value='12']").prop("checked", true);
2536 2539
 	} else if($(this).val() === "2") { //投诉
2537 2540
 		$('#PageArrival').hide(); //receive
2538 2541
 		$('#Duration').show();
@@ -2540,6 +2543,9 @@ $('.r_order_type').find('input[type="radio"]').on('change', function() {
2540 2543
 		$('#Page').hide();
2541 2544
 		$('#wlbm').show();
2542 2545
 		$('#wlmcc').show();
2546
+		$('.noSampling').show();
2547
+		$('.Sampling').hide();
2548
+		$("#dddd input[type=radio][value='12']").prop("checked", true);
2543 2549
 	} else if($(this).val() === "3") { //抽检
2544 2550
 		$('#PageArrival').hide(); //receive
2545 2551
 		$('#Duration').hide();
@@ -2547,6 +2553,9 @@ $('.r_order_type').find('input[type="radio"]').on('change', function() {
2547 2553
 		$('#Page').hide();
2548 2554
 		$('#wlbm').show();
2549 2555
 		$('#wlmcc').show();
2556
+		$('.Sampling').show();
2557
+		$('.noSampling').hide();
2558
+		$("#dddd input[type=radio][value='720']").prop("checked", true);
2550 2559
 	} else if($(this).val() === "4") { //建议其他
2551 2560
 		$('#PageArrival').hide(); //receive
2552 2561
 		$('#Duration').hide();
@@ -2554,6 +2563,9 @@ $('.r_order_type').find('input[type="radio"]').on('change', function() {
2554 2563
 		$('#Page').show();
2555 2564
 		$('#wlbm').hide();
2556 2565
 		$('#wlmcc').hide();
2566
+		$('.noSampling').show();
2567
+		$('.Sampling').hide();
2568
+		$("#dddd input[type=radio][value='12']").prop("checked", true);
2557 2569
 	}
2558 2570
 });
2559 2571
 // $(document).ready(function () {

+ 18 - 8
CallCenterWeb.UI/callScreen/callScreen.html

@@ -13,7 +13,11 @@
13 13
 		<link rel="stylesheet" href="../js/webuploader/webuploader.css" />
14 14
 		<link rel="stylesheet" href="css/screen.css" />
15 15
 	</head>
16
-
16
+	<style>
17
+		.Sampling{
18
+			display: none;
19
+		}
20
+	</style>
17 21
 	<body class="gray-bg">
18 22
 		<div class="wrapper wrapper-content animated fadeInRight callSreen">
19 23
 			<!--来电弹屏开始-->
@@ -763,27 +767,33 @@
763 767
 										<div class="form-group col-md-12 clearfix">
764 768
 											<label class="col-md-2">超时时限:</label>
765 769
 											<div id="dddd" class="col-md-6 r_order_type  designate">
766
-												<label class="radio-inline">
770
+												<label class="radio-inline noSampling">
767 771
 												   <input type="radio" name="error" value="12" checked="checked"> 12小时
768 772
 												</label>
769
-												<label class="radio-inline">
773
+												<label class="radio-inline noSampling">
770 774
 												   <input type="radio" name="error" value="24" > 24小时
771 775
 												</label>
772
-												<label class="radio-inline">
776
+												<label class="radio-inline noSampling">
773 777
 												   <input type="radio" name="error" value="36" > 36小时
774 778
 												</label>
775
-												<label class="radio-inline">
779
+												<label class="radio-inline noSampling">
776 780
 												   <input type="radio" name="error" value="48" > 48小时
777 781
 												</label>
778
-												<label class="radio-inline">
782
+												<label class="radio-inline noSampling">
779 783
 												   <input type="radio" name="error" value="72" > 72小时
780 784
 												</label>
781
-												<label class="radio-inline">
785
+												<label class="radio-inline noSampling">
782 786
 												   <input type="radio" name="error" value="120" > 5天
783 787
 												</label>
784
-												<label class="radio-inline">
788
+												<label class="radio-inline noSampling">
785 789
 												   <input type="radio" name="error" value="168" > 7天
786 790
 												</label>
791
+												<label class="radio-inline Sampling">
792
+												   <input type="radio" name="error" value="720" > 1个月
793
+												</label>
794
+												<label class="radio-inline Sampling">
795
+												   <input type="radio" name="error" value="2160" > 3个月
796
+												</label>
787 797
 											</div>
788 798
 										</div>
789 799
 										<div class="form-group col-md-12 clearfix">

+ 5 - 1
CallCenterWeb.UI/commonTpl/WorkOrderTransfer.html

@@ -189,7 +189,7 @@
189 189
 					<tr>
190 190
 						<th>超时时限:</th>
191 191
 						<td>
192
-							<div id="chaishi">
192
+							<div class="chaishi noSampling">
193 193
 								  <input type="radio" name="yanq" value="12" checked="checked">12小时
194 194
 								  <input type="radio" name="yanq" value="24">24小时
195 195
 								  <input type="radio" name="yanq" value="36">36小时
@@ -198,6 +198,10 @@
198 198
 								  <input type="radio" name="yanq" value="120">5天
199 199
 								  <input type="radio" name="yanq" value="168">7天
200 200
 							</div>
201
+							<div class="chaishi Sampling">
202
+								<input type="radio" name="yanq" value="720">1个月
203
+								<input type="radio" name="yanq" value="2160">3个月
204
+							</div>
201 205
 						</td>
202 206
 						<th style="display: none;" id="penli">其他时限:</th>
203 207
 						<td style="display: none;" id="liset">

+ 13 - 8
CallCenterWeb.UI/js/WorkOrder/AddWorkOrder.js

@@ -95,14 +95,7 @@ $('#empty').click(function(){//ID为test的元素点击时
95 95
 });
96 96
 //新建工单 保存
97 97
 function orderSave() {	
98
-	typePro();
99
-	// if(!regexs.userNameReg.test($.trim($('#order_name').val()))) {
100
-	// 	layer.confirm('请输入有效的客户姓名(2-20位汉字可以包含·•)!', {
101
-	// 		icon: 2,
102
-	// 		btn: ['确定']
103
-	// 	});
104
-	// 	return;
105
-	// }	
98
+	typePro();	
106 99
 	$.post(huayi.config.callcenter_url + 'WorkOrderNew/Add', {		                 
107 100
 					  // orderid: oid, //否	strubg	工单ID
108 101
 					        F_Source:$('#godanlx').val(),// 			
@@ -1065,6 +1058,9 @@ $('.r_order_type').find('input[type="radio"]').on('change', function() {
1065 1058
 				$('#Page').hide();
1066 1059
 				$('#wlbm').hide();
1067 1060
 				$('#wlmcc').hide();
1061
+				$('.noSampling').show();
1062
+				$('.Sampling').hide();
1063
+				$("#dddd input[type=radio][value='12']").prop("checked", true);
1068 1064
 			} else if($(this).val() === "2"){ //投诉
1069 1065
 				$('#PageArrival').hide();  //receive
1070 1066
 				$('#Duration').show();
@@ -1072,6 +1068,9 @@ $('.r_order_type').find('input[type="radio"]').on('change', function() {
1072 1068
 				$('#Page').hide();
1073 1069
 				$('#wlbm').show();
1074 1070
 				$('#wlmcc').show();
1071
+				$('.Sampling').hide();
1072
+				$('.noSampling').show();
1073
+				$("#dddd input[type=radio][value='12']").prop("checked", true);
1075 1074
 			}else if($(this).val() === "3"){ //抽检
1076 1075
 				$('#PageArrival').hide();  //receive
1077 1076
 				$('#Duration').hide();
@@ -1079,6 +1078,9 @@ $('.r_order_type').find('input[type="radio"]').on('change', function() {
1079 1078
 				$('#Page').hide();
1080 1079
 				$('#wlbm').show();
1081 1080
 				$('#wlmcc').show();
1081
+				$('.Sampling').show();
1082
+				$('.noSampling').hide();
1083
+				$("#dddd input[type=radio][value='720']").prop("checked", true);
1082 1084
 			}else if($(this).val() === "4"){ //建议其他
1083 1085
 				$('#PageArrival').hide();  //receive
1084 1086
 				$('#Duration').hide();
@@ -1086,6 +1088,9 @@ $('.r_order_type').find('input[type="radio"]').on('change', function() {
1086 1088
 				$('#Page').show();
1087 1089
 				$('#wlbm').hide();
1088 1090
 				$('#wlmcc').hide();
1091
+				$('.Sampling').hide();
1092
+				$('.noSampling').show();
1093
+				$("#dddd input[type=radio][value='12']").prop("checked", true);
1089 1094
 			}
1090 1095
 		});
1091 1096
 		

+ 20 - 7
CallCenterWeb.UI/js/WorkOrder/WorkOrderTransfer.js

@@ -247,23 +247,36 @@ function getWorkOrderInfo(oid) {
247 247
 						$(".isSelDiv").remove();
248 248
 					}
249 249
 					if($("#cl_gdlx").text()=="抽检"){	
250
-					   if($("#cl_gdn").text()=="市场管理科"){
251
-						  $("#abcde").show(); 
252
-						  $("#abc").hide();
253
-						  $("#zipeti").hide();
254
-					   }
250
+						$('.noSampling').hide();
251
+						$('.Sampling').show();
252
+						$(".chaishi input[type=radio][value='720']").prop("checked", true);
253
+					    if($("#cl_gdn").text()=="市场管理科"){
254
+						  	$("#abcde").show(); 
255
+						  	$("#abc").hide();
256
+						  	$("#zipeti").hide();
257
+					    }
255 258
 					}else if($("#cl_gdlx").text()=="投诉"){
259
+						$('.Sampling').hide();
260
+						$('.noSampling').show();
261
+						$(".chaishi input[type=radio][value='12']").prop("checked", true);
256 262
 						   if($("#cl_gdn").text()=="市场管理科"){
257 263
 							   $("#abc").show();
258 264
 							   $("#abcde").hide();
259 265
 							   $("#zipeti").show();
260 266
 						   }
261 267
 					}else if($("#cl_gdlx").text()=="咨询"){
268
+						$('.Sampling').hide();
269
+						$('.noSampling').show();
270
+						$(".chaishi input[type=radio][value='12']").prop("checked", true);
262 271
 						   if($("#cl_gdn").text()=="市场管理科"){
263 272
 							   $("#abc").show();
264 273
 							   $("#ddd").hide();
265 274
 							   $("#zipeti").show();
266 275
 						   }
276
+					}else if($("#cl_gdlx").text()=="建议及其他"){
277
+						$('.Sampling').hide();
278
+						$('.noSampling').show();
279
+						$(".chaishi input[type=radio][value='12']").prop("checked", true); 
267 280
 					}
268 281
 					   
269 282
 					   
@@ -780,7 +793,7 @@ function getTypeName(val) {
780 793
 //派单(分配)
781 794
 function dealWorkOrder(oid) {
782 795
 	var isDetail = helper.request.queryString("isDetail"); //是否是详情页面的处理
783
-	var overtime =$("#chaishi").find('input[type="radio"]:checked').val()
796
+	var overtime =$(".chaishi").find('input[type="radio"]:checked').val()
784 797
 	$.post(huayi.config.callcenter_url + 'WorkOrderNew/AssignWorkOrder', {
785 798
 		orderid: oid, //否	strubg	工单ID
786 799
 		// isend: ltype, //否	int	
@@ -924,7 +937,7 @@ function SCCJJG(obj) {
924 937
 	})
925 938
 }
926 939
 
927
-$('#chaishi').find('input[type="radio"]').on('change', function() {
940
+$('.chaishi').find('input[type="radio"]').on('change', function() {
928 941
 			if($(this).val() == "其他") { //超时时限
929 942
 				$('#penli').show();
930 943
 				$('#liset').show();

+ 1 - 0
CallCenterWeb.UI/visit/js/visitList.js

@@ -261,6 +261,7 @@ function btn_visit(oid) {
261 261
 }
262 262
 function formatterOprateDispose(val, row) {
263 263
 	return '<ul class="tool_downs">' +
264
+		'<li><a href="javascript:;" class="xg" authorize="yes" id="HY_transfer_' + row.F_ID + '"  onclick="btn_deleteT(' + row.F_ID + ')" title="退回">退回</a></li>' +
264 265
 		'<li><a href="javascript:;" class="aBtn" authorize="yes" id="HY_transfer_' + row.F_ID + '" onclick="btn_receiv(\'' + row.F_ID + '\')" title="完结">完结</a></li>' +
265 266
 		'</ul>';
266 267
 }

+ 18 - 2
WeChat/client-side/AddWorkolder.html

@@ -17,10 +17,12 @@
17 17
 			.zaue {
18 18
 				width: 15%;
19 19
 			}
20
-			
21 20
 			.yyyy {
22 21
 				line-height: 40px;
23 22
 			}
23
+			.SamplTime{
24
+				display: none;
25
+			}
24 26
 		</style>
25 27
 	</head>
26 28
 
@@ -469,9 +471,10 @@
469 471
 						<textarea class="ztext content size-14" placeholder="请输入问题描述" name="" id="order_reception" rows="3" cols="" placeholder="请详细描述您的问题和建议..."></textarea>
470 472
 					</div>
471 473
 				</li>
472
-				<li class="mui-table-view-cell mui-table-view-cell-line">
474
+				<li class="mui-table-view-cell mui-table-view-cell-line noSamplTime">
473 475
 					<div class="mui-input-row">
474 476
 						<label class="label">超时时限:</label>
477
+						
475 478
 						<div class="mui-input-row mui-radio mui-left radio_box overtime">
476 479
 							<label>12小时</label>
477 480
 							<input type="radio" name="error" checked="checked" value="12" class="size-14" />
@@ -502,6 +505,19 @@
502 505
 						</div>
503 506
 					</div>
504 507
 				</li>
508
+				<li class="mui-table-view-cell mui-table-view-cell-line SamplTime">
509
+					<div class="mui-input-row">
510
+						<label class="label">超时时限:</label>
511
+						<div class="mui-input-row mui-radio mui-left radio_box overtime">
512
+							<label>1个月</label>
513
+							<input type="radio" name="error" value="720" class="size-14" />
514
+						</div>
515
+						<div class="mui-input-row mui-radio mui-left radio_box overtime">
516
+							<label>3个月</label>
517
+							<input type="radio" name="error" value="2160" class="size-14" />
518
+						</div>
519
+					</div>
520
+				</li>
505 521
 				<li class="mui-table-view-cell mui-table-view-cell-line">
506 522
 					<div class="mui-input-row">
507 523
 						<label class="label">发送短信:</label>

+ 71 - 0
WeChat/client-side/css/details.css

@@ -1103,6 +1103,77 @@ a {
1103 1103
 	top: 10px;
1104 1104
 	right: 5%;
1105 1105
 }
1106
+/*弹框11*/
1107
+.pop_up_div11 {
1108
+	margin: 0 auto;
1109
+	position: fixed;
1110
+	left: 10%;
1111
+	bottom: 30%;
1112
+	width: 80%;
1113
+	height: 180px;
1114
+	background: #FFFFFF;
1115
+	z-index: 334;
1116
+	-moz-border-radius: 5px;
1117
+	/* Firefox */
1118
+	-webkit-border-radius: 5px;
1119
+	/* Safari 和 Chrome */
1120
+	border-radius: 5px;
1121
+	/* Opera 10.5+, 以及使用了IE-CSS3的IE浏览器 */
1122
+	display: none;
1123
+}
1124
+
1125
+.pop_up_div11 .tit {
1126
+	width: 100%;
1127
+	line-height: 44px;
1128
+	height: 44px;
1129
+	text-align: center;
1130
+	font-size: 13px;
1131
+	color: #666666;
1132
+}
1133
+
1134
+.pop_up_div11 .contain {
1135
+	width: 90%;
1136
+	margin: 0 auto;
1137
+}
1138
+
1139
+.pop_up_div11 .contain textarea {
1140
+	width: 100%;
1141
+	height: 70px;
1142
+	background: #f5f5f6;
1143
+	text-indent: 2em;
1144
+	font-size: 12px;
1145
+	padding: 5px;
1146
+	line-height: 20px;
1147
+	margin: 0;
1148
+	border: none;
1149
+}
1150
+
1151
+.pop_up_div11 .btn {
1152
+	width: 65%;
1153
+	margin: 0 auto;
1154
+	/*overflow: hidden;*/
1155
+	position: absolute;
1156
+	left: 20%;
1157
+	bottom: 60px;
1158
+}
1159
+
1160
+.pop_up_div11 .btn button {
1161
+	padding: 3px 25px !important;
1162
+}
1163
+
1164
+.pop_up_div11 .btn .fl {
1165
+	position: absolute;
1166
+	top: 10px;
1167
+	left: 5%;
1168
+	color: #666666;
1169
+}
1170
+
1171
+.pop_up_div11 .btn .fr {
1172
+	position: absolute;
1173
+	top: 10px;
1174
+	right: 5%;
1175
+}
1176
+
1106 1177
 
1107 1178
 
1108 1179
 /*退回*/

Plik diff jest za duży
+ 732 - 637
WeChat/client-side/details.html


+ 12 - 2
WeChat/client-side/js/AddWorkolder.js

@@ -14,24 +14,36 @@ $(function() {
14 14
 				$('#spot').hide();
15 15
 				$('#kehmm').hide();
16 16
 				$('#qtton').hide();
17
+				$('.noSamplTime').show();
18
+				$('.SamplTime').hide();
19
+				$(".overtime input[type=radio][value='12']").prop("checked", true);
17 20
 			} else if($(this).val() === "2"){
18 21
 				$('#complaint').show();
19 22
 				$('#consult').hide();
20 23
 				$('#spot').hide();
21 24
 				$('#kehmm').show();
22 25
 				$('#qtton').hide();
26
+				$('.noSamplTime').show();
27
+				$('.SamplTime').hide();
28
+				$(".overtime input[type=radio][value='12']").prop("checked", true);
23 29
 			}else if($(this).val() === "3"){
24 30
 				$('#spot').show();
25 31
 				$('#consult').hide();
26 32
 				$('#complaint').hide();
27 33
 				$('#kehmm').show();
28 34
 				$('#qtton').hide();
35
+				$('.noSamplTime').hide();
36
+				$('.SamplTime').show();
37
+				$(".overtime input[type=radio][value='720']").prop("checked", true);
29 38
 			}else if($(this).val() === "4"){
30 39
 				$('#spot').hide();
31 40
 				$('#consult').hide();
32 41
 				$('#complaint').hide();
33 42
 				$('#kehmm').hide();
34 43
 				$('#qtton').show();
44
+				$('.noSamplTime').show();
45
+				$('.SamplTime').hide();
46
+				$(".overtime input[type=radio][value='12']").prop("checked", true);
35 47
 			}
36 48
 			
37 49
 		});
@@ -102,8 +114,6 @@ function typePro(){
102 114
 		$('#wlmcc').hide();
103 115
 		$('#clie').hide();
104 116
 		$('#mate').hide();
105
-
106
-
107 117
 	}else if(orderIsover=== '2'){
108 118
 		daqu=$('#order_macrocell').val();
109 119
 		fengo=$('#order_branch').val();

+ 277 - 285
WeChat/client-side/js/redeploy.js

@@ -15,41 +15,40 @@ $(function() {
15 15
 	});
16 16
 	//返回列表
17 17
 	$('.return').on('tap', function() {
18
-//		if (itype==0) {
19
-//			window.location.href = "client_index.html"
20
-//		}if (itype==1) {
21
-//			window.location.href = "client_index.html"
22
-//		} else if (itype==2){
23
-//			window.location.href = "pend_index.html"
24
-//		} else if (itype==3){
25
-//			window.location.href = "finsh_index.html"
26
-//		}
18
+		//		if (itype==0) {
19
+		//			window.location.href = "client_index.html"
20
+		//		}if (itype==1) {
21
+		//			window.location.href = "client_index.html"
22
+		//		} else if (itype==2){
23
+		//			window.location.href = "pend_index.html"
24
+		//		} else if (itype==3){
25
+		//			window.location.href = "finsh_index.html"
26
+		//		}
27 27
 		window.location.href = "details.html?id=" + id + '&itype=' + itype;
28 28
 
29 29
 	});
30
-	$(".order_unit").on("click",function(){
31
-      	var ichk=$("input:checkbox:checked").map(function(){
32
-         return $(this).val();
33
-      	}).get().join(",");
34
-      	$("#zerenSel").val(ichk);
30
+	$(".order_unit").on("click", function() {
31
+		var ichk = $("input:checkbox:checked").map(function() {
32
+			return $(this).val();
33
+		}).get().join(",");
34
+		$("#zerenSel").val(ichk);
35 35
 	})
36 36
 	//提交按钮
37 37
 	$('#submit').on('tap', function() {
38 38
 		var str_ary = '';
39
-	    $(".image-box").each(function (i, n) {
40
-	        var a = $(n).attr("indexs");
41
-	        if (a) {
42
-	            if (str_ary) {
43
-	                str_ary = str_ary + ',' + a;
44
-	            }
45
-	            else {
46
-	                str_ary = a;
47
-	            }
48
-	        }
49
-	    })
50
-		if($('#recive_type').attr('data-index')== '') {
39
+		$(".image-box").each(function(i, n) {
40
+			var a = $(n).attr("indexs");
41
+			if(a) {
42
+				if(str_ary) {
43
+					str_ary = str_ary + ',' + a;
44
+				} else {
45
+					str_ary = a;
46
+				}
47
+			}
48
+		})
49
+		if($('#recive_type').attr('data-index') == '') {
51 50
 			mui.alert('请选择部门!') //请输入工单类型
52
-		} else if($('#ower_recive').attr('data-index')== '') {
51
+		} else if($('#ower_recive').attr('data-index') == '') {
53 52
 			mui.alert('请选择接收人!') //请输入工单类型
54 53
 		} else if($('#order_reception').val() == '') {
55 54
 			mui.alert('请输入转派理由!') //填写详细描述
@@ -66,55 +65,55 @@ $(function() {
66 65
 					clbm: $('#recive_type').attr('data-index'), //是	int	部门Id
67 66
 					clid: $("#ower_recive").attr('data-index'), //否	int	接收人用户id
68 67
 					cont: $("#order_reception").val(), //否	int	指派说明
69
-					overtime:$("#order_Claimnumber").val(), //超时时限
70
-					sms:$('.order_type').find('input[type="radio"]:checked').val(), //是否短信提醒
71
-					isApprovalp:$('.order_rise').find('input[type="radio"]:checked').val(), //高层审批
72
-					hclid:$("#ower_highse").attr('data-index'),
73
-//				投诉类市场管理科
74
-//                  QualityMonth:$("#order_time").val(), //质保期限
75
-                    PreliminaryOpinion: $('#ower_relationship').attr('data-index'), //初审意见
76
-//              投诉类市场管理科   
77
-					isvisit:$('.order_pay').find('input[type="radio"]:checked').val(), //是否回访
68
+					overtime: $('.overtime').find('input[type="radio"]:checked').val(), //超期时间
69
+					sms: $('.order_type').find('input[type="radio"]:checked').val(), //是否短信提醒
70
+					isApprovalp: $('.order_rise').find('input[type="radio"]:checked').val(), //高层审批
71
+					hclid: $("#ower_highse").attr('data-index'),
72
+					//				投诉类市场管理科
73
+					//                  QualityMonth:$("#order_time").val(), //质保期限
74
+					PreliminaryOpinion: $('#ower_relationship').attr('data-index'), //初审意见
75
+					//              投诉类市场管理科   
76
+					isvisit: $('.order_pay').find('input[type="radio"]:checked').val(), //是否回访
78 77
 					QualityEventLevel: $('#ower_event').attr('data-index'), //事件等级
79 78
 					ClaimAmount: $('#order_money').attr('data-index'), //索赔金额
80
-					ResponsibleUnit:$("#zerenSel").val(), //责任单位
79
+					ResponsibleUnit: $("#zerenSel").val(), //责任单位
81 80
 					ApprovalOpinions: $('.order_opinion').find('input[type="radio"]:checked').val(), //审批意见
82
-					ApprovalDisagree:$("#order_idea").val(), //不同意意见
81
+					ApprovalDisagree: $("#order_idea").val(), //不同意意见
83 82
 					CompensationMethod: $('.order_coin').find('input[type="radio"]:checked').val(), //补偿方式
84
-					CompensationMoney:$("#order_make").val(), //补偿钱款
83
+					CompensationMoney: $("#order_make").val(), //补偿钱款
85 84
 					CResponsibleUnits: $('#ower_ponding').attr('data-index'), //对应责任单位
86
-					Fquantity:$("#order_amount").val(), //实收数量
87
-					ImprovementRequirements:$("#order_demand").val(), //改进要求
88
-					CApprovalNo:$("#order_odd").val(), //审批工作流单号
89
-//			抽检类市场管理科
90
-                    SpotResult: $('#ower_result').attr('data-index'), //抽检结果
91
-					SelfResult:$("#order_spection").val(), //自检结果
92
-					ApprovalNo:$("#order_approve").val(), //对应审批工作流单号
93
-					ReturnAccount:$("#order_sum").val(), //确认返账金额
94
-//			抽检类质量管理部		
95
-                    isvisit: $('.order_return').find('input[type="radio"]:checked').val(), //是否否回访
85
+					Fquantity: $("#order_amount").val(), //实收数量
86
+					ImprovementRequirements: $("#order_demand").val(), //改进要求
87
+					CApprovalNo: $("#order_odd").val(), //审批工作流单号
88
+					//			抽检类市场管理科
89
+					SpotResult: $('#ower_result').attr('data-index'), //抽检结果
90
+					SelfResult: $("#order_spection").val(), //自检结果
91
+					ApprovalNo: $("#order_approve").val(), //对应审批工作流单号
92
+					ReturnAccount: $("#order_sum").val(), //确认返账金额
93
+					//			抽检类质量管理部		
94
+					isvisit: $('.order_return').find('input[type="radio"]:checked').val(), //是否否回访
96 95
 					IsRecord: $('.order_records').find('input[type="radio"]:checked').val(), //是否备案
97
-					ClaimAmount:$("#order_claim").val(), //索赔金额
98
-//			销售内勤		
99
-					ReturnAccount:$("#order_account").val(), //确认返账金额
100
-//			质量管理科		
101
-					Fquantity:$("#order_receipts").val(), //确认实收数量
102
-					
103
-					F_Files:str_ary
104
-//					openid: 'oXF5e1mWpX5DajW5_yjNLPKb8ThE', //微信openid 测试用
96
+					ClaimAmount: $("#order_claim").val(), //索赔金额
97
+					//			销售内勤		
98
+					ReturnAccount: $("#order_account").val(), //确认返账金额
99
+					//			质量管理科		
100
+					Fquantity: $("#order_receipts").val(), //确认实收数量
101
+
102
+					F_Files: str_ary
103
+					//					openid: 'oXF5e1mWpX5DajW5_yjNLPKb8ThE', //微信openid 测试用
105 104
 				},
106 105
 				success: function(data) {
107 106
 					debugger
108 107
 					if(data.state == "success") {
109 108
 						debugger
110 109
 						mui.toast('成功');
111
-						
112
-						if (itype==2) {
113
-							window.location.href="haveorder_list.html";	
114
-						} else{
115
-							window.location.href="haveorder_list.html";	
110
+
111
+						if(itype == 2) {
112
+							window.location.href = "haveorder_list.html";
113
+						} else {
114
+							window.location.href = "haveorder_list.html";
116 115
 						}
117
-						
116
+
118 117
 					} else {
119 118
 						mui.toast(data.message);
120 119
 					}
@@ -123,116 +122,126 @@ $(function() {
123 122
 		}
124 123
 	})
125 124
 
126
-Ajax() 
127
-//获取详情
128
-function Ajax() {
129
-				$.ajax({
130
-					url: huayi.config.callcenter_url + 'WxLogin/GetDetails',
131
-					data: {
132
-						id: id, //工单编号
133
-						OpenId: openid, //微信openid,
134
-					},
135
-					async: true,
136
-					dataType: 'json',
137
-					type: 'get', //HTTP请求类型
138
-					success: function(data) {
139
-						if(data.state.toLowerCase() == "success") {
140
-							var result = data.rows[0];
141
-							if(result.Source == 0) {
142
-								$("#source").hide();
143
-							} else {
144
-								$("#source").show();
145
-							}
146
-							var itype=result.F_State;
147
-//							alert(itype)
148
-							if(itype == 0) {
149
-								$(".dispose1").show();
150
-								$(".dispose2").show();
151
-							}else if(itype == 1) {
152
-								$(".dispose1").hide();      
153
-							} else if(itype == 2) {
154
-								$(".dispose2").show();
155
-							} else if(itype == 3) {
156
-								$(".dispose3").show();
157
-							}
158
-							
159
-							if (result.GDLXName=="咨询") {
160
-								$(".Work_lastDealDiv").hide(); //受理人
161
-								$("#source").hide(); //投诉
162
-							} else{
163
-								$(".Work_lastDealDiv").show(); //受理人
164
-								$("#source").show(); //投诉
165
-							}
166
-							var builName
167
-							if (result.buildingname==null) {
168
-								builName=""
169
-							} else{
170
-								builName=result.buildingname
171
-							}
172
-							var proName
173
-							
174
-							if (result.proname==null) {
175
-								proName=""
176
-							} else{
177
-								proName=result.proname
178
-							}
179
-							var complain
180
-							if (result.ComplaintDepartment==null) {
181
-								complain=""
182
-							} else{
183
-								complain=result.ComplaintDepartment
184
-							}
185
-							$(".WordID").text(result.ID);
186
-							$("#Work_classname").text(result.F_TypeName); //工单类型
187
-							$("#section").text(result.F_DeptName); //部门
188
-						if($("#section").text()=="市场管理科"){
189
-							  $("#gcsp").show(); 
190
-						}	
191
-						if($("#Work_classname").text()=="抽检"){	
192
-						   if($("#section").text()=="市场管理科"){
193
-							  $("#cccc").show(); 
194
-						   }
195
-						}else if($("#Work_classname").text()=="投诉"){
196
-						   if($("#section").text()=="市场管理科"){
197
-							   $("#aaaa").show();
198
-						   }
199
-						}else if($("#Work_classname").text()=="咨询"){
200
-							   if($("#section").text()=="市场管理科"){
201
-								   $("#aaaa").show();
202
-							   }
125
+	Ajax()
126
+	//获取详情
127
+	function Ajax() {
128
+		$.ajax({
129
+			url: huayi.config.callcenter_url + 'WxLogin/GetDetails',
130
+			data: {
131
+				id: id, //工单编号
132
+				OpenId: openid, //微信openid,
133
+			},
134
+			async: true,
135
+			dataType: 'json',
136
+			type: 'get', //HTTP请求类型
137
+			success: function(data) {
138
+				if(data.state.toLowerCase() == "success") {
139
+					var result = data.rows[0];
140
+					if(result.Source == 0) {
141
+						$("#source").hide();
142
+					} else {
143
+						$("#source").show();
144
+					}
145
+					var itype = result.F_State;
146
+					//							alert(itype)
147
+					if(itype == 0) {
148
+						$(".dispose1").show();
149
+						$(".dispose2").show();
150
+					} else if(itype == 1) {
151
+						$(".dispose1").hide();
152
+					} else if(itype == 2) {
153
+						$(".dispose2").show();
154
+					} else if(itype == 3) {
155
+						$(".dispose3").show();
156
+					}
157
+
158
+					if(result.GDLXName == "咨询") {
159
+						$(".Work_lastDealDiv").hide(); //受理人
160
+						$("#source").hide(); //投诉
161
+					} else {
162
+						$(".Work_lastDealDiv").show(); //受理人
163
+						$("#source").show(); //投诉
164
+					}
165
+					var builName
166
+					if(result.buildingname == null) {
167
+						builName = ""
168
+					} else {
169
+						builName = result.buildingname
170
+					}
171
+					var proName
172
+
173
+					if(result.proname == null) {
174
+						proName = ""
175
+					} else {
176
+						proName = result.proname
177
+					}
178
+					var complain
179
+					if(result.ComplaintDepartment == null) {
180
+						complain = ""
181
+					} else {
182
+						complain = result.ComplaintDepartment
183
+					}
184
+					$(".WordID").text(result.ID);
185
+					$("#Work_classname").text(result.F_TypeName); //工单类型
186
+
187
+					$("#section").text(result.F_DeptName); //部门
188
+					if($("#section").text() == "市场管理科") {
189
+						$("#gcsp").show();
190
+					}
191
+					if($("#Work_classname").text() == "抽检") {
192
+						$(".SamplTime").show();
193
+						$(".noSamplTime").remove();
194
+						$(".overtime input[type=radio][value='720']").prop("checked", true);
195
+						if($("#section").text() == "市场管理科") {
196
+							$("#cccc").show();
203 197
 						}
204
-						
205
-						if($("#Work_classname").text()=="抽检"){	
206
-						   if($("#section").text()=="质量管理部"){
207
-							  $("#dddd").show(); 
208
-						   }
209
-						}else if($("#Work_classname").text()=="投诉"){
210
-						   if($("#section").text()=="质量管理部"){
211
-							   $("#bbbb").show();
212
-						   }
213
-						}else if($("#Work_classname").text()=="咨询"){
214
-							   if($("#section").text()=="质量管理部"){
215
-								   $("#bbbbb").show();
216
-							   }
198
+					} else if($("#Work_classname").text() == "投诉") {
199
+						$(".noSamplTime").show();
200
+						$(".SamplTime").remove();
201
+						if($("#section").text() == "市场管理科") {
202
+							$("#aaaa").show();
203
+						}
204
+					} else if($("#Work_classname").text() == "咨询") {
205
+						$(".noSamplTime").show();
206
+						$(".SamplTime").remove();
207
+						if($("#section").text() == "市场管理科") {
208
+							$("#aaaa").show();
209
+						}
210
+					}else if($("#Work_classname").text() == "建议及其他") {
211
+						$(".noSamplTime").show();
212
+						$(".SamplTime").remove();
213
+						if($("#section").text() == "市场管理科") {
214
+							$("#aaaa").show();
217 215
 						}
216
+					}
217
+					if($("#Work_classname").text() == "抽检") {
218 218
 						
219
-						if($("#Work_classname").text()=="销售内勤"){	
220
-						   if($("#section").text()=="质量管理部"){
221
-							  $("#eeee").show(); 
222
-						   }
219
+						if($("#section").text() == "质量管理部") {
220
+							$("#dddd").show();
221
+						}
222
+					} else if($("#Work_classname").text() == "投诉") {
223
+						if($("#section").text() == "质量管理部") {
224
+							$("#bbbb").show();
223 225
 						}
224
-							 
225
-							 
226
-				
227
-				
226
+					} else if($("#Work_classname").text() == "咨询") {
227
+						if($("#section").text() == "质量管理部") {
228
+							$("#bbbbb").show();
229
+						}
230
+					}
231
+
232
+					if($("#Work_classname").text() == "销售内勤") {
233
+						if($("#section").text() == "质量管理部") {
234
+							$("#eeee").show();
228 235
 						}
229
-					},
230
-					error: function(xhr, type, errorThrown) {
231
-						//异常处理;
232 236
 					}
233
-				})
234
-			}
235 237
 
238
+				}
239
+			},
240
+			error: function(xhr, type, errorThrown) {
241
+				//异常处理;
242
+			}
243
+		})
244
+	}
236 245
 
237 246
 	//	接收部门
238 247
 	function getDepts() {}
@@ -242,7 +251,7 @@ function Ajax() {
242 251
 		url: huayi.config.callcenter_url + 'Department/GetAssignDeptList',
243 252
 		async: false,
244 253
 		data: {
245
-			
254
+
246 255
 		},
247 256
 		dataType: 'json',
248 257
 		success: function(data) {
@@ -283,7 +292,7 @@ function Ajax() {
283 292
 	}
284 293
 	//初审意见
285 294
 	var keyList = [];
286
-//	console.log(keyList);
295
+	//	console.log(keyList);
287 296
 	$.ajax({
288 297
 		type: "get",
289 298
 		url: huayi.config.callcenter_url + 'Dictionary/GetDicValueListByFlagWx',
@@ -294,7 +303,7 @@ function Ajax() {
294 303
 		dataType: 'json',
295 304
 		success: function(data) {
296 305
 			var key_data = data.data;
297
-//			console.log(data.data);
306
+			//			console.log(data.data);
298 307
 			$(key_data).each(function(i, n) {
299 308
 				var obj = {};
300 309
 				obj.value = n.F_DictionaryValueId;
@@ -303,29 +312,29 @@ function Ajax() {
303 312
 			})
304 313
 		}
305 314
 	});
306
- //事件等级
307
-       var  grade = [];
308
-		$.ajax({
309
-			type: "get",
310
-			url: huayi.config.callcenter_url + 'Dictionary/GetDicValueListByFlagWx',
311
-			async: false,
312
-			data: {
313
-				flag: 'ZLSJDJ'
314
-			},
315
-			dataType: 'json',
316
-			success: function(data) {
317
-				var key_data = data.data;
318
-	//			console.log(key_data);
319
-				$(key_data).each(function(i, n) {
320
-					var obj = {};
321
-					obj.value = n.F_DictionaryValueId;
322
-					obj.text = n.F_Name;
323
-					grade.push(obj)
324
-				})
325
-			}
326
-		});			
327
-//对应责任单位
328
-var  parallelism = [];
315
+	//事件等级
316
+	var grade = [];
317
+	$.ajax({
318
+		type: "get",
319
+		url: huayi.config.callcenter_url + 'Dictionary/GetDicValueListByFlagWx',
320
+		async: false,
321
+		data: {
322
+			flag: 'ZLSJDJ'
323
+		},
324
+		dataType: 'json',
325
+		success: function(data) {
326
+			var key_data = data.data;
327
+			//			console.log(key_data);
328
+			$(key_data).each(function(i, n) {
329
+				var obj = {};
330
+				obj.value = n.F_DictionaryValueId;
331
+				obj.text = n.F_Name;
332
+				grade.push(obj)
333
+			})
334
+		}
335
+	});
336
+	//对应责任单位
337
+	var parallelism = [];
329 338
 	$.ajax({
330 339
 		type: "get",
331 340
 		url: huayi.config.callcenter_url + 'Dictionary/GetDicValueListByFlagWx',
@@ -336,7 +345,7 @@ var  parallelism = [];
336 345
 		dataType: 'json',
337 346
 		success: function(data) {
338 347
 			var key_data = data.data;
339
-//			console.log(key_data);
348
+			//			console.log(key_data);
340 349
 			$(key_data).each(function(i, n) {
341 350
 				var obj = {};
342 351
 				obj.value = n.F_DictionaryValueId;
@@ -344,56 +353,50 @@ var  parallelism = [];
344 353
 				parallelism.push(obj)
345 354
 			})
346 355
 		}
347
-	});	
348
-//抽检结果
349
-       var  spot = [];
350
-		$.ajax({
351
-			type: "get",
352
-			url: huayi.config.callcenter_url + 'Dictionary/GetDicValueListByFlagWx',
353
-			async: false,
354
-			data: {
355
-				flag: 'SCCJJG'
356
-			},
357
-			dataType: 'json',
358
-			success: function(data) {
359
-				var key_data = data.data;
360
-	//			console.log(key_data);
361
-				$(key_data).each(function(i, n) {
362
-					var obj = {};
363
-					obj.value = n.F_DictionaryValueId;
364
-					obj.text = n.F_Name;
365
-					spot.push(obj)
366
-				})
367
-			}
368
-		});				
369
-//高层部门
370
-  var  hirise = [];
371
-		$.ajax({
372
-			type: "get",
373
-			url: huayi.config.callcenter_url + 'WxLogin/GetHighlevel',
374
-			async: false,
375
-			data: {
376
-				
377
-			},
378
-			dataType: 'json',
379
-			success: function(data) {
380
-				var key_data = data.data.user;
381
-				console.log(key_data);
382
-				$(key_data).each(function(i, n) {
383
-					var obj = {};
384
-					obj.value = n.F_UserId;
385
-					obj.text = n.F_UserName+n.F_WorkNumber;
386
-					hirise.push(obj)
387
-				})
388
-			}
389
-		});				
390
-
391
-
356
+	});
357
+	//抽检结果
358
+	var spot = [];
359
+	$.ajax({
360
+		type: "get",
361
+		url: huayi.config.callcenter_url + 'Dictionary/GetDicValueListByFlagWx',
362
+		async: false,
363
+		data: {
364
+			flag: 'SCCJJG'
365
+		},
366
+		dataType: 'json',
367
+		success: function(data) {
368
+			var key_data = data.data;
369
+			//			console.log(key_data);
370
+			$(key_data).each(function(i, n) {
371
+				var obj = {};
372
+				obj.value = n.F_DictionaryValueId;
373
+				obj.text = n.F_Name;
374
+				spot.push(obj)
375
+			})
376
+		}
377
+	});
378
+	//高层部门
379
+	var hirise = [];
380
+	$.ajax({
381
+		type: "get",
382
+		url: huayi.config.callcenter_url + 'WxLogin/GetHighlevel',
383
+		async: false,
384
+		data: {
392 385
 
386
+		},
387
+		dataType: 'json',
388
+		success: function(data) {
389
+			var key_data = data.data.user;
390
+			console.log(key_data);
391
+			$(key_data).each(function(i, n) {
392
+				var obj = {};
393
+				obj.value = n.F_UserId;
394
+				obj.text = n.F_UserName + n.F_WorkNumber;
395
+				hirise.push(obj)
396
+			})
397
+		}
398
+	});
393 399
 
394
-	
395
-	
396
- 
397 400
 	(function($, doc) {
398 401
 		$.init();
399 402
 		$.ready(function() {
@@ -431,17 +434,17 @@ var  parallelism = [];
431 434
 			showCityPickerButton5.addEventListener('tap', function(event) {
432 435
 				getReceiveUser();
433 436
 				cityPicker5.show(function(items) {
434
-					if (items[0].text!=undefined) {
437
+					if(items[0].text != undefined) {
435 438
 						cityResult5.value = items[0].text;
436 439
 						cityResult5.setAttribute("data-index", items[0].value);
437 440
 					}
438
-					
441
+
439 442
 					//返回 false 可以阻止选择框的关闭
440 443
 					//return false;
441 444
 				});
442 445
 			}, false);
443
-     //初审意见
444
-     var cityPicker3 = new $.PopPicker();
446
+			//初审意见
447
+			var cityPicker3 = new $.PopPicker();
445 448
 			cityPicker3.setData(keyList);
446 449
 			var showCityPickerButton = doc.getElementById('showCityPicker3');
447 450
 			var cityResult3 = doc.getElementById('ower_relationship');
@@ -453,8 +456,8 @@ var  parallelism = [];
453 456
 					//return false;
454 457
 				});
455 458
 			}, false);
456
-	//事件等级
457
-       	var affair = new $.PopPicker();
459
+			//事件等级
460
+			var affair = new $.PopPicker();
458 461
 			affair.setData(grade);
459 462
 			var showCityPickerButton4 = doc.getElementById('eventle');
460 463
 			var cityResultc4 = doc.getElementById('ower_event');
@@ -465,22 +468,22 @@ var  parallelism = [];
465 468
 					//返回 false 可以阻止选择框的关闭
466 469
 					//return false;
467 470
 				});
468
-		}, false); 
469
-	//对应责任单位
470
-//     	var para = new $.PopPicker();
471
-//			para.setData(parallelism);
472
-//			var showCityPickerButton = doc.getElementById('ponding');
473
-//			var cityResultc2 = doc.getElementById('ower_ponding');
474
-//			showCityPickerButton.addEventListener('tap', function(event) {
475
-//				para.show(function(items) {
476
-//					cityResultc2.value = items[0].text;
477
-//					cityResultc2.setAttribute("data-index", items[0].text);
478
-//					//返回 false 可以阻止选择框的关闭
479
-//					//return false;
480
-//				});
481
-//		}, false); 	
482
-	//事件等级
483
-       	var result = new $.PopPicker();
471
+			}, false);
472
+			//对应责任单位
473
+			//     	var para = new $.PopPicker();
474
+			//			para.setData(parallelism);
475
+			//			var showCityPickerButton = doc.getElementById('ponding');
476
+			//			var cityResultc2 = doc.getElementById('ower_ponding');
477
+			//			showCityPickerButton.addEventListener('tap', function(event) {
478
+			//				para.show(function(items) {
479
+			//					cityResultc2.value = items[0].text;
480
+			//					cityResultc2.setAttribute("data-index", items[0].text);
481
+			//					//返回 false 可以阻止选择框的关闭
482
+			//					//return false;
483
+			//				});
484
+			//		}, false); 	
485
+			//事件等级
486
+			var result = new $.PopPicker();
484 487
 			result.setData(spot);
485 488
 			var showCityPickerButton6 = doc.getElementById('result');
486 489
 			var cityResultc6 = doc.getElementById('ower_result');
@@ -491,9 +494,9 @@ var  parallelism = [];
491 494
 					//返回 false 可以阻止选择框的关闭
492 495
 					//return false;
493 496
 				});
494
-		}, false); 	
495
-	//高层
496
-	 	var hir = new $.PopPicker();
497
+			}, false);
498
+			//高层
499
+			var hir = new $.PopPicker();
497 500
 			hir.setData(hirise);
498 501
 			var showCityPickerButton7 = doc.getElementById('showCi');
499 502
 			var cityResultc7 = doc.getElementById('ower_highse');
@@ -504,34 +507,25 @@ var  parallelism = [];
504 507
 					//返回 false 可以阻止选择框的关闭
505 508
 					//return false;
506 509
 				});
507
-		}, false); 	
508
-	
509
-	
510
-	
511
-	
512
-	
513
-	
514
-	
515
-			
516
-	   })
517
-		
518
-	})(mui, document);
510
+			}, false);
519 511
 
520
-})
512
+		})
521 513
 
514
+	})(mui, document);
522 515
 
516
+})
523 517
 
524 518
 $('.order_opinion').find('input[type="radio"]').on('change', function() {
525 519
 	if($(this).val() == "不同意") { //业务办理
526 520
 		$('.F_Address').show();
527
-	}else{
521
+	} else {
528 522
 		$('.F_Address').hide();
529 523
 	}
530 524
 });
531 525
 $('.order_coin').find('input[type="radio"]').on('change', function() {
532 526
 	if($(this).val() == "钱款") { //业务办理
533 527
 		$('.make').show();
534
-	}else{
528
+	} else {
535 529
 		$('.make').hide();
536 530
 	}
537 531
 });
@@ -539,9 +533,7 @@ $('.order_coin').find('input[type="radio"]').on('change', function() {
539 533
 $('.order_rise').find('input[type="radio"]').on('change', function() {
540 534
 	if($(this).val() == "1") { //业务办理
541 535
 		$('#showCi').show();
542
-	}else{
536
+	} else {
543 537
 		$('#showCi').hide();
544 538
 	}
545
-});
546
-
547
-
539
+});

+ 45 - 2
WeChat/client-side/redeploy.html

@@ -18,6 +18,9 @@
18 18
 		   	height:100%;
19 19
 		   	padding-bottom: 55px;
20 20
 		   }
21
+		   .SamplTime{
22
+		   	 display: none;
23
+		   }
21 24
 		</style>
22 25
 	</head>
23 26
 	<body>
@@ -65,10 +68,50 @@
65 68
 						<textarea class="ztext content size-14" placeholder="请输入指派理由" name="" id="order_reception" rows="3" cols="" placeholder="请详细描述您的问题和建议..."></textarea>
66 69
 					</div>
67 70
 				</li>
68
-				<li class="mui-table-view-cell">
71
+				<li class="mui-table-view-cell noSamplTime">
69 72
 					<div class="mui-input-row">
70 73
 						<label class="label">超时时限:</label>
71
-						<input type="number" id="order_Claimnumber" placeholder="请输入时限" class="size-14">
74
+						<div class="mui-input-row mui-radio mui-left radio_box overtime">
75
+							<label>12小时</label>
76
+							<input type="radio" name="error" checked="checked" value="12" class="size-14" />
77
+						</div>
78
+						<div class="mui-input-row mui-radio mui-left radio_box overtime">
79
+							<label>24小时</label>
80
+							<input type="radio" name="error" value="24" class="size-14" />
81
+						</div>
82
+						<div class="mui-input-row mui-radio mui-left radio_box overtime">
83
+							<label>36小时</label>
84
+							<input type="radio" name="error" value="36" class="size-14" />
85
+						</div>
86
+						<div class="mui-input-row mui-radio mui-left radio_box overtime">
87
+							<label>48小时</label>
88
+							<input type="radio" name="error" value="48" class="size-14" />
89
+						</div>
90
+						<div class="mui-input-row mui-radio mui-left radio_box overtime">
91
+							<label>72小时</label>
92
+							<input type="radio" name="error" value="72" class="size-14" />
93
+						</div>
94
+						<div class="mui-input-row mui-radio mui-left radio_box overtime">
95
+							<label>5天</label>
96
+							<input type="radio" name="error" value="120" class="size-14" />
97
+						</div>
98
+						<div class="mui-input-row mui-radio mui-left radio_box overtime">
99
+							<label>7天</label>
100
+							<input type="radio" name="error" value="168" class="size-14" />
101
+						</div>
102
+					</div>
103
+				</li>
104
+				<li class="mui-table-view-cell SamplTime">
105
+					<div class="mui-input-row">
106
+						<label class="label">超时时限:</label>
107
+						<div class="mui-input-row mui-radio mui-left radio_box overtime">
108
+							<label>1个月</label>
109
+							<input type="radio" name="error" value="720" class="size-14" />
110
+						</div>
111
+						<div class="mui-input-row mui-radio mui-left radio_box overtime">
112
+							<label>3个月</label>
113
+							<input type="radio" name="error" value="2160" class="size-14" />
114
+						</div>
72 115
 					</div>
73 116
 				</li>
74 117
 				<li class="mui-table-view-cell">

+ 0 - 108
WebChart/TelephoneDetails.html

@@ -1,108 +0,0 @@
1
-<!DOCTYPE html>
2
-<html>
3
-
4
-	<head>
5
-		<meta charset="UTF-8">
6
-		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7
-		<!--优先使用 IE 最新版本和 Chrome-->
8
-		<meta name="renderer" content="webkit" />
9
-		<script src="Script/Common/huayi.load.js"></script>
10
-		<script src="Script/Common/huayi.config.js"></script>
11
-		<link rel="stylesheet" href="css/index.css" />
12
-		<title>话务量详情页</title>
13
-		<style>
14
-			#time1{
15
-				width: 199px;
16
-			}
17
-			.phone_bottom >div:last-child{
18
-				width: 40%;
19
-				margin-left: 1%;
20
-				 background: url(img/jd_bg3.png) no-repeat center;
21
-				 background-size: 100% 100%;
22
-			}
23
-			.phone_bottom >div:first-child{
24
-				 background: url(img/jd_bg2.png) no-repeat center;
25
-				 background-size: 100% 100%;
26
-				width: 59%;
27
-			}
28
-		</style>
29
-	</head>
30
-
31
-	<body>
32
-		<!--导航栏开始-->
33
-		<div id="nav" class="clearfix">
34
-			<div class="nav_left"><img src="img/nav_l.png" alt="" /></div>
35
-			<div class="nav_middle">
36
-				<ul class="clearfix">
37
-					<li>
38
-						<a href="./sourceChannel.html"><img src="img/lyqd_0.png" alt="" /></a>
39
-					</li>
40
-					<li>
41
-						<a href="./receiptDepartment.html"><img src="img/jdbm_0.png" alt="" /></a>
42
-					</li>
43
-					<li>
44
-						<a href="./index.html"><img src="img/title.png" alt="" /></a>
45
-					</li>
46
-					<li>
47
-						<a href="./TelephoneDetails.html"><img src="img/hwsl_1.png" alt="" /></a>
48
-					</li>
49
-					<li>
50
-						<a href="./complaintsReport.html"><img src="img/tsjb_0.png" alt="" /></a>
51
-					</li>
52
-				</ul>
53
-
54
-			</div>
55
-			<div class="nav_right"><img src="img/nav_r.png" alt="" /></div>
56
-		</div>
57
-		<!--导航栏结束-->
58
-		<div id="wrap" class="container">
59
-				<div class="phone_top">
60
-				<div class="legend_bar clearfix">
61
-					<div class="title_word pull-left">
62
-						<span class="col-line"></span> 坐席闲忙比例
63
-					</div>
64
-					<div class="time_box pull-right form-inline">
65
-						地区选择:
66
-						<select class="areaOne selects" style="height: 30px;"></select>
67
-						日期<input type="text" id="time1" class="times" />
68
-					</div>
69
-				</div>
70
-				<div id="sitProportion" style=" width: 100%;height: 400px;"></div>
71
-			</div>
72
-			<!--<div class="row">-->
73
-				<div class="phone_bottom clearfix">
74
-				<div class="bottom_left pull-left">
75
-					<div class="legend_bar clearfix">
76
-					<div class="title_word pull-left">
77
-						<span class="col-line"></span> 话务量实时统计数据
78
-					</div>
79
-					<div class="time_box pull-right form-inline">
80
-						日期<input type="text" id="time2" class="times" />
81
-					</div>
82
-
83
-				</div>
84
-					<!--话务量实时统计-->
85
-					<div id="phoneTimeCount" style="width: 100%;height: 390px;"></div>
86
-				</div>
87
-				<div class="bottom_right pull-left">
88
-					<div class="legend_bar clearfix">
89
-					<div class="title_word pull-left">
90
-						<span class="col-line"></span> 今日话务量数据
91
-					</div>
92
-					<div class="time_box pull-right form-inline">
93
-						日期<input type="text" id="time3" class="times"/>
94
-					</div>
95
-
96
-				</div>
97
-					<!--今日话务量数据-->
98
-					<div id="todyPhoneCount" style="width: 100%;height: 390px;"></div>	
99
-				</div>
100
-
101
-			</div>
102
-			<!--</div>-->
103
-		</div>
104
-		<script src="js/TelephoneDetails.js"></script>
105
-		<script src="js/setItervalTime.js"></script>
106
-	</body>
107
-
108
-</html>

+ 0 - 722
WebChart/index_20190702.html

@@ -1,722 +0,0 @@
1
-<!DOCTYPE html>
2
-<html>
3
-
4
-	<head>
5
-		<meta charset="utf-8" />
6
-		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7
-		<!--优先使用 IE 最新版本和 Chrome-->
8
-		<meta name="renderer" content="webkit" />
9
-		<script src="Script/Common/huayi.load.js"></script>
10
-		<script src="Script/Common/huayi.config.js"></script>
11
-		<link rel="stylesheet" href="css/swiper.min.css" />
12
-		<link rel="stylesheet" href="css/animate.min.css" />
13
-		<link rel="stylesheet" href="plugins/numbergd/globle.css" />
14
-		<link rel="stylesheet" href="css/index.css" />
15
-		<title>大数据首页</title>
16
-		<style>
17
-			.trafficVolume .orderCon_right>div{
18
-				height: auto;
19
-			}
20
-			.trafficVolume .orderCon_right{
21
-				position: relative;
22
-			}
23
-			.time_box{
24
-				position: absolute;
25
-			    right: -10px;
26
-			    top: 125px;
27
-			}
28
-			.time_box_four{
29
-				right: 180px;
30
-			    top: 120px;
31
-			    z-index: 1;
32
-			}
33
-			.time_box_leftTh{
34
-				left: 180px;
35
-			    top: 120px;
36
-			    z-index: 1;
37
-			}
38
-			.time_box:before {
39
-			    position: absolute;
40
-			    right: 12px;
41
-			    top: 7px;
42
-			    z-index: 9999999;
43
-			    content: "";
44
-			    height: 0;
45
-			    width: 0;
46
-			    border:none; 
47
-			    /* border-right: 7px solid transparent; */
48
-			    /* border-left: 7px solid transparent; */
49
-			}
50
-			.depart{
51
-				height: 26px;
52
-				line-height: 26px;
53
-			}
54
-		</style>
55
-	</head>
56
-
57
-	<body>
58
-		<!--导航栏开始-->
59
-		<div id="nav" class="clearfix">
60
-			<div class="nav_left"><img src="img/nav_l.png" alt="" /></div>
61
-			<div class="nav_middle">
62
-				<ul class="clearfix">
63
-					<li>
64
-						<a href="./sourceChannel.html"><img src="img/lyqd_0.png" alt="" /></a>
65
-					</li>
66
-					<li>
67
-						<a href="./receiptDepartment.html"><img src="img/jdbm_0.png" alt="" /></a>
68
-					</li>
69
-					<li>
70
-						<a href="javaScript:;"><img src="img/title.png" alt="" /></a>
71
-					</li>
72
-					<li>
73
-						<a href="./TelephoneDetails.html"><img src="img/hwsl_0.png" alt="" /></a>
74
-					</li>
75
-					<li>
76
-						<a href="./complaintsReport.html"><img src="img/tsjb_0.png" alt="" /></a>
77
-					</li>
78
-				</ul>
79
-
80
-			</div>
81
-			<div class="nav_right"><img src="img/nav_r.png" alt="" /></div>
82
-		</div>
83
-		<!--导航栏结束-->
84
-		<div id="wrap">
85
-			<div class="swiper-container">
86
-				
87
-				<div class="swiper-wrapper">
88
-					<!--第一屏-->
89
-					<div class="swiper-slide">
90
-						<div class="orderStatistic slideCon_bg clearfix">
91
-							<p class="slide_title slide_title1"></p>
92
-							<div class="orderCon_left slide_left">
93
-								<ul>
94
-									<!--<li class="ani" swiper-animate-effect="fadeInLeft" swiper-animate-duration="0.3s" swiper-animate-delay="4s">-->
95
-									<li>
96
-										<img src="img/num_icon.png" alt="" />
97
-										<p class="num_word">
98
-											<span>受理量</span></br>
99
-											<span></span>
100
-											<span>118710</span>
101
-										</p>
102
-									</li>
103
-									<!--<li class="ani" swiper-animate-effect="fadeInLeft" swiper-animate-duration="0.3s" swiper-animate-delay="4.5s">-->
104
-									<li>
105
-										<img src="img/num_icon.png" alt="" />
106
-										<p class="num_word">
107
-											<span>结案量</span></br>
108
-											<span></span>
109
-											<span>116704</span>
110
-										</p>
111
-									</li>
112
-									<!--<li class="ani" swiper-animate-effect="fadeInLeft" swiper-animate-duration="0.3s" swiper-animate-delay="5s">-->
113
-									<li>
114
-										<img src="img/num_icon.png" alt="" />
115
-										<p class="num_word">
116
-											<span>结案率</span></br>
117
-											<span></span>
118
-											<span>98.31%</span>
119
-										</p>
120
-									</li>
121
-									<!--<li class="ani" swiper-animate-effect="fadeInLeft" swiper-animate-duration="0.3s" swiper-animate-delay="5.5s">-->
122
-									<li>
123
-										<img src="img/num_icon.png" alt="" />
124
-										<p class="num_word">
125
-											<span>满意度</span></br>
126
-											<span></span>
127
-											<span>89.63%</span>
128
-										</p>
129
-									</li>
130
-									<!--<li class="ani" swiper-animate-effect="fadeInLeft" swiper-animate-duration="0.3s" swiper-animate-delay="6s">-->
131
-								</ul>
132
-							</div>
133
-							<div class="orderCon_middle slide_middle_first">
134
-								<div class="map_bg">
135
-									<div id="radarBox" class="ani" swiper-animate-effect="OutOpcity" swiper-animate-duration="infinite" swiper-animate-delay="3s">
136
-										<div class="radar">
137
-											<div class="radar_inner"></div>
138
-										</div>
139
-									</div>
140
-									<div class="quanbgBox quan_SYQ ani" swiper-animate-effect="showTxt" swiper-animate-duration=".5s" swiper-animate-delay="3.5s">
141
-										<div class="quanbg">
142
-											<span class="quan quan1 quan1a "></span>
143
-											<span class="quan quan2 quan2a "></span>
144
-											<span class="quan quan3 quan3a "></span>
145
-											<span class="quan quan4"></span>
146
-											<span class="quan quan1 quan1b "></span>
147
-											<span class="quan quan2 quan2b "></span>
148
-											<span class="quan quan3 quan3b "></span>
149
-										</div>
150
-										<span class="txt txt_SYQ">睢阳区</br>5174</span>
151
-									</div>
152
-									<div class="quanbgBox quan_MQ ani" swiper-animate-effect="showTxt" swiper-animate-duration=".5s" swiper-animate-delay="3.5s">
153
-										<div class="quanbg">
154
-											<span class="quan quan1 quan1a "></span>
155
-											<span class="quan quan2 quan2a "></span>
156
-											<span class="quan quan3 quan3a "></span>
157
-											<span class="quan quan4"></span>
158
-											<span class="quan quan1 quan1b "></span>
159
-											<span class="quan quan2 quan2b "></span>
160
-											<span class="quan quan3 quan3b "></span>
161
-										</div>
162
-										<span class="txt txt_MQ">民权县</br>7634</span>
163
-									</div>
164
-									<div class="quanbgBox quan_SX ani" swiper-animate-effect="showTxt" swiper-animate-duration=".5s" swiper-animate-delay="3.5s">
165
-										<div class="quanbg">
166
-											<span class="quan quan1 quan1a "></span>
167
-											<span class="quan quan2 quan2a "></span>
168
-											<span class="quan quan3 quan3a "></span>
169
-											<span class="quan quan4"></span>
170
-											<span class="quan quan1 quan1b "></span>
171
-											<span class="quan quan2 quan2b "></span>
172
-											<span class="quan quan3 quan3b "></span>
173
-										</div>
174
-										<span class="txt txt_SX">睢县</br>2285</span>
175
-									</div>
176
-									<div class="quanbgBox quan_NL ani" swiper-animate-effect="showTxt" swiper-animate-duration=".5s" swiper-animate-delay="3.5s">
177
-										<div class="quanbg">
178
-											<span class="quan quan1 quan1a "></span>
179
-											<span class="quan quan2 quan2a "></span>
180
-											<span class="quan quan3 quan3a "></span>
181
-											<span class="quan quan4"></span>
182
-											<span class="quan quan1 quan1b "></span>
183
-											<span class="quan quan2 quan2b "></span>
184
-											<span class="quan quan3 quan3b "></span>
185
-										</div>
186
-										<span class="txt txt_NL">宁陵县</br>681</span>
187
-									</div>
188
-									<div class="quanbgBox quan_LYQ ani" swiper-animate-effect="showTxt" swiper-animate-duration=".5s" swiper-animate-delay="3.5s">
189
-										<div class="quanbg">
190
-											<span class="quan quan1 quan1a "></span>
191
-											<span class="quan quan2 quan2a "></span>
192
-											<span class="quan quan3 quan3a "></span>
193
-											<span class="quan quan4"></span>
194
-											<span class="quan quan1 quan1b "></span>
195
-											<span class="quan quan2 quan2b "></span>
196
-											<span class="quan quan3 quan3b "></span>
197
-										</div>
198
-										<span class="txt txt_LYQ">梁园区</br>4253</span>
199
-									</div>
200
-									<div class="quanbgBox quan_KFQ ani" swiper-animate-effect="showTxt" swiper-animate-duration=".5s" swiper-animate-delay="3.5s">
201
-										<div class="quanbg">
202
-											<span class="quan quan1 quan1a "></span>
203
-											<span class="quan quan2 quan2a "></span>
204
-											<span class="quan quan3 quan3a "></span>
205
-											<span class="quan quan4"></span>
206
-											<span class="quan quan1 quan1b "></span>
207
-											<span class="quan quan2 quan2b "></span>
208
-											<span class="quan quan3 quan3b "></span>
209
-										</div>
210
-										<span class="txt txt_KFQ">示范区</br>2773</span>
211
-									</div>
212
-									<div class="quanbgBox quan_ZC ani" swiper-animate-effect="showTxt" swiper-animate-duration=".5s" swiper-animate-delay="3.5s">
213
-										<div class="quanbg">
214
-											<span class="quan quan1 quan1a "></span>
215
-											<span class="quan quan2 quan2a "></span>
216
-											<span class="quan quan3 quan3a "></span>
217
-											<span class="quan quan4"></span>
218
-											<span class="quan quan1 quan1b "></span>
219
-											<span class="quan quan2 quan2b "></span>
220
-											<span class="quan quan3 quan3b "></span>
221
-										</div>
222
-										<span class="txt txt_ZC">柘城县</br>3141</span>
223
-									</div>
224
-									<div class="quanbgBox quan_YCX ani" swiper-animate-effect="showTxt" swiper-animate-duration=".5s" swiper-animate-delay="3.5s">
225
-										<div class="quanbg">
226
-											<span class="quan quan1 quan1a "></span>
227
-											<span class="quan quan2 quan2a "></span>
228
-											<span class="quan quan3 quan3a "></span>
229
-											<span class="quan quan4"></span>
230
-											<span class="quan quan1 quan1b "></span>
231
-											<span class="quan quan2 quan2b "></span>
232
-											<span class="quan quan3 quan3b "></span>
233
-										</div>
234
-										<span class="txt txt_YCX">虞城县</br>5452</span>
235
-									</div>
236
-									<div class="quanbgBox quan_XYX ani" swiper-animate-effect="showTxt" swiper-animate-duration=".5s" swiper-animate-delay="3.5s">
237
-										<div class="quanbg">
238
-											<span class="quan quan1 quan1a "></span>
239
-											<span class="quan quan2 quan2a "></span>
240
-											<span class="quan quan3 quan3a "></span>
241
-											<span class="quan quan4"></span>
242
-											<span class="quan quan1 quan1b "></span>
243
-											<span class="quan quan2 quan2b "></span>
244
-											<span class="quan quan3 quan3b "></span>
245
-										</div>
246
-										<span class="txt txt_XYX">夏邑县</br>3735</span>
247
-									</div>
248
-									<!--<div class="quanbgBox quan_YCS ani" swiper-animate-effect="showTxt" swiper-animate-duration=".5s" swiper-animate-delay="3.5s">
249
-										<div class="quanbg">
250
-											<span class="quan quan1 quan1a "></span>
251
-											<span class="quan quan2 quan2a "></span>
252
-											<span class="quan quan3 quan3a "></span>
253
-											<span class="quan quan4"></span>
254
-											<span class="quan quan1 quan1b "></span>
255
-											<span class="quan quan2 quan2b "></span>
256
-											<span class="quan quan3 quan3b "></span>
257
-										</div>
258
-										<span class="txt txt_YCS">永城市</span>
259
-									</div>-->
260
-								</div>
261
-							</div>
262
-
263
-						</div>
264
-					</div>
265
-				
266
-					<!--第二屏  工单渠道来源-->
267
-					<div class="swiper-slide">
268
-						<div class="orderSource slideCon_bg clearfix">
269
-							<div class="timeWrap lasttimeWrap timeWrapPosi">
270
-							<div class="time_box pull-right form-inline time_box_leftTh">
271
-								时间选择:
272
-								<input type="text" id="time3" class="times" />
273
-							</div>
274
-								<div class="time_box pull-right form-inline time_box_four">
275
-									地区选择:
276
-									<select class="areaTwo selects" style="height: 30px;"></select>
277
-								</div>
278
-							</div>
279
-							<p class="slide_title slide_title2"></p>
280
-							<div class="source_left slide_left">
281
-								<ul>
282
-									<li class="clearfix">
283
-										<!--<div class="source_kuang rectangle">
284
-											<div class="pbout">
285
-												<div class="percent_box">
286
-												<div class="percent_out"></div>											
287
-											   <div class="percent_in"></div>
288
-											   <div class="percent_word">
289
-											   	   	<p>180</p>%
290
-													<p style="margin-top: 16px;">占总量</p>
291
-											   </div>
292
-											</div>
293
-											</div>
294
-											<p class="num_word">
295
-												<span>电话</span><span>2666</span>
296
-											</p>
297
-
298
-										</div>-->
299
-										<div class="line_wrap one_line line oneLeft_line"></div>
300
-									</li>
301
-									<li class="clearfix">
302
-										
303
-										<div class="line_wrap line two_line twoLeft_line"></div>
304
-									</li>
305
-									<li class="clearfix">
306
-										<div class="line_wrap line three_line threeLeft_line"></div>
307
-											
308
-										
309
-									</li>
310
-									<li class="clearfix">
311
-										<div class="line_wrap line four_line fourLeft_line"></div>
312
-									</li>
313
-								</ul>
314
-							</div>
315
-							<div class="source_middle slide_middle">
316
-								<div class="map_bg">
317
-
318
-								</div>
319
-							</div>
320
-							<div class="source_right slide_right">
321
-								<ul>
322
-									<li class="clearfix">
323
-										<div class="line_wrap one_line line oneRight_line"></div>
324
-										
325
-									</li>
326
-									<li class="clearfix">
327
-										<div class="line_wrap line two_line twoRight_line"></div>
328
-										
329
-									</li>
330
-									<li class="clearfix">
331
-										<div class="line_wrap line three_line threeRight_line"></div>
332
-									</li>
333
-									<li class="clearfix">
334
-										<div class="line_wrap line four_line fourRight_line">
335
-										</div>
336
-									</li>
337
-								</ul>
338
-							</div>
339
-						</div>
340
-					</div>
341
-
342
-					<!--第三屏  工单类型-->
343
-					<div class="swiper-slide">
344
-						<div class="slideCon_bg orderType clearfix">
345
-							<div class="timeWrap lasttimeWrap timeWrapPosi">
346
-								<div class="time_box pull-right form-inline time_box_four">
347
-									地区选择:
348
-									<select class="areaThree selects" style="height: 30px;"></select>
349
-								</div>
350
-							</div>
351
-							<p class="slide_title slide_title3"></p>
352
-							<div class="orderTtype_Con">
353
-								<ul class="clearfix">
354
-									<li class="active">
355
-										<div class="typeWord">咨询</div>
356
-										<img src="img/order_ZX.png" alt="" />
357
-										<p class="typeWord_line">数据展示</p>
358
-										<p class="order_count">2568</p>
359
-										<p class="typeWord_line">今日咨询量</p>
360
-										<p class="order_count">2568</p>
361
-										<p class="typeWord_line">本月咨询量</p>
362
-										<p class="order_count">2568</p>
363
-										<p class="typeWord_line">咨询总量</p>
364
-										<div class="persent_box">
365
-											<div class="persent_kuang">20%</div>
366
-										</div>
367
-										<p class="persent_word">总计类型占比</p>
368
-									</li>
369
-									<li>
370
-										<div class="typeWord">求助</div>
371
-										<img src="img/order_QZ.png" alt="" />
372
-										<p class="typeWord_line">数据展示</p>
373
-										<p class="order_count">2568</p>
374
-										<p class="typeWord_line">今日求助量</p>
375
-										<p class="order_count">2568</p>
376
-										<p class="typeWord_line">本月求助量</p>
377
-										<p class="order_count">2568</p>
378
-										<p class="typeWord_line">求助总量</p>
379
-										<div class="persent_box">
380
-											<div class="persent_kuang">20%</div>
381
-										</div>
382
-										<p class="persent_word">总计类型占比</p>
383
-									</li>
384
-									<li>
385
-										<div class="typeWord">投诉</div>
386
-										<img src="img/order_TS.png" alt="" />
387
-										<p class="typeWord_line">数据展示</p>
388
-										<p class="order_count">2568</p>
389
-										<p class="typeWord_line">今日投诉量</p>
390
-										<p class="order_count">2568</p>
391
-										<p class="typeWord_line">本月投诉量</p>
392
-										<p class="order_count">2568</p>
393
-										<p class="typeWord_line">投诉总量</p>
394
-										<div class="persent_box">
395
-											<div class="persent_kuang">20%</div>
396
-										</div>
397
-										<p class="persent_word">总计类型占比</p>
398
-									</li>
399
-									<li>
400
-										<div class="typeWord">建议</div>
401
-										<img src="img/order_JY.png" alt="" />
402
-										<p class="typeWord_line">数据展示</p>
403
-										<p class="order_count">2568</p>
404
-										<p class="typeWord_line">今日建议量</p>
405
-										<p class="order_count">2568</p>
406
-										<p class="typeWord_line">本月建议量</p>
407
-										<p class="order_count">2568</p>
408
-										<p class="typeWord_line">建议总量</p>
409
-										<div class="persent_box">
410
-											<div class="persent_kuang">20%</div>
411
-										</div>
412
-										<p class="persent_word">总计类型占比</p>
413
-									</li>
414
-									<li>
415
-										<div class="typeWord">表扬</div>
416
-										<img src="img/order_BY.png" alt="" />
417
-										<p class="typeWord_line">数据展示</p>
418
-										<p class="order_count">2568</p>
419
-										<p class="typeWord_line">今日表扬量</p>
420
-										<p class="order_count">2568</p>
421
-										<p class="typeWord_line">本月表扬量</p>
422
-										<p class="order_count">2568</p>
423
-										<p class="typeWord_line">表扬总量</p>
424
-										<div class="persent_box">
425
-											<div class="persent_kuang">20%</div>
426
-										</div>
427
-										<p class="persent_word">总计类型占比</p>
428
-									</li>
429
-									<li>
430
-										<div class="typeWord">其他</div>
431
-										<img src="img/order_QT.png" alt="" />
432
-										<p class="typeWord_line">数据展示</p>
433
-										<p class="order_count">2568</p>
434
-										<p class="typeWord_line">今日其他量</p>
435
-										<p class="order_count">2568</p>
436
-										<p class="typeWord_line">本月其他量</p>
437
-										<p class="order_count">2568</p>
438
-										<p class="typeWord_line">其他总量</p>
439
-										<div class="persent_box">
440
-											<div class="persent_kuang">20%</div>
441
-										</div>
442
-										<p class="persent_word">总计类型占比</p>
443
-									</li>
444
-								</ul>
445
-
446
-							</div>
447
-						</div>
448
-					</div>
449
-
450
-					<!--第四屏  工单状态-->
451
-					<!-- <div class="swiper-slide"> -->
452
-						<!-- <div class="timeWrap lasttimeWrap timeWrapPosi"> -->
453
-							<!-- <div class="time_box pull-right form-inline time_box_leftTh"> -->
454
-								<!-- 时间选择: -->
455
-								<!-- <input type="text" id="time2" class="times" /> -->
456
-							<!-- </div> -->
457
-							<!-- <div class="time_box pull-right form-inline time_box_four"> -->
458
-								<!-- 地区选择: -->
459
-								<!-- <select class="areaFour selects" style="height: 30px;"></select> -->
460
-							<!-- </div> -->
461
-						<!-- </div> -->
462
-						<!-- <div class="slideCon_bg orderState clearfix"> -->
463
-							<!-- <p class="slide_title slide_title4"></p> -->
464
-							<!-- <div class="orderCon_left slide_left"> -->
465
-								<!-- <ul class="orderState_ul"> -->
466
-									<!-- <li class="active"> -->
467
-										<!-- <img src="img/state_YS.png" alt="" /> -->
468
-										<!-- <div class="num_word"> -->
469
-											<!-- <p>延时审核</p> -->
470
-											<!-- <div id="state_yssh"></div> -->
471
-										<!-- </div> -->
472
-									<!-- </li> -->
473
-									<!-- <li> -->
474
-										<!-- <img src="img/state_YBL.png" alt="" /> -->
475
-										<!-- <div class="num_word"> -->
476
-											<!-- <p>已办理</p> -->
477
-											<!-- <div id="state_ybl"></div> -->
478
-										<!-- </div> -->
479
-									<!-- </li> -->
480
-									<!-- <li> -->
481
-										<!-- <img src="img/state_YHF.png" alt="" /> -->
482
-										<!-- <div class="num_word"> -->
483
-											<!-- <p>已回访</p> -->
484
-											<!-- <div id="state_yhf"></div> -->
485
-										<!-- </div> -->
486
-									<!-- </li> -->
487
-									<!-- <li> -->
488
-										<!-- <img src="img/state_YHF.png" alt="" /> -->
489
-										<!-- <div class="num_word"> -->
490
-											<!-- <p>重办待交办</p> -->
491
-											<!-- <div id="state_cbdjb"></div> -->
492
-										<!-- </div> -->
493
-									<!-- </li> -->
494
-									<!-- <li> -->
495
-										<!-- <img src="img/state_CBZ.png" alt="" /> -->
496
-										<!-- <div class="num_word"> -->
497
-											<!-- <p>重办中</p> -->
498
-											<!-- <div id="state_cbz"></div> -->
499
-										<!-- </div> -->
500
-									<!-- </li> -->
501
-									<!-- <li> -->
502
-										<!-- <img src="img/state_YJA.png" alt="" /> -->
503
-										<!-- <div class="num_word"> -->
504
-											<!-- <p>已结案</p> -->
505
-											<!-- <div id="state_yja"></div> -->
506
-										<!-- </div> -->
507
-									<!-- </li> -->
508
-								<!-- </ul> -->
509
-							<!-- </div> -->
510
-							<!-- <div class="orderCon_middle slide_middle"> -->
511
-								<!-- <div class="earth_box"> -->
512
-									<!-- <div class="earth_quan1"></div> -->
513
-									<!-- <div class="earth_quan2"></div> -->
514
-									<!-- <div class="earth_quan3"></div> -->
515
-									<!-- <div class="earth"></div> -->
516
-								<!-- </div> -->
517
-							<!-- </div> -->
518
-
519
-							<!-- <div class="orderCon_right slide_right"> -->
520
-								<!-- <ul class="orderState_ul"> -->
521
-									<!-- <li> -->
522
-										<!-- <img src="img/state_XZGD.png" alt="" /> -->
523
-										<!-- <div class="num_word"> -->
524
-											<!-- <p>新增工单</p> -->
525
-											<!-- <div id="state_xzgd"></div> -->
526
-										<!-- </div> -->
527
-									<!-- </li> -->
528
-
529
-									<!-- <li> -->
530
-										<!-- <img src="img/state_DJB.png" alt="" /> -->
531
-										<!-- <div class="num_word"> -->
532
-											<!-- <p>待交办</p> -->
533
-											<!-- <div id="state_djb"></div> -->
534
-										<!-- </div> -->
535
-									<!-- </li> -->
536
-									<!-- <li> -->
537
-										<!-- <img src="img/state_DCS.png" alt="" /> -->
538
-										<!-- <div class="num_word"> -->
539
-											<!-- <p>待审核</p> -->
540
-											<!-- <div id="state_dsh"></div> -->
541
-										<!-- </div> -->
542
-									<!-- </li> -->
543
-									<!-- <li> -->
544
-										<!-- <img src="img/state_DCS.png" alt="" /> -->
545
-										<!-- <div class="num_word"> -->
546
-											<!-- <p>待查收</p> -->
547
-											<!-- <div id="state_dcs"></div> -->
548
-										<!-- </div> -->
549
-									<!-- </li> -->
550
-									<!-- <li> -->
551
-										<!-- <img src="img/state_THSH.png" alt="" /> -->
552
-										<!-- <div class="num_word"> -->
553
-											<!-- <p>退回审核</p> -->
554
-											<!-- <div id="state_thsh"></div> -->
555
-										<!-- </div> -->
556
-									<!-- </li> -->
557
-									<!-- <li> -->
558
-										<!-- <img src="img/state_BLZ.png" alt="" /> -->
559
-										<!-- <div class="num_word"> -->
560
-											<!-- <p>办理中</p> -->
561
-											<!-- <div id="state_blz"></div> -->
562
-										<!-- </div> -->
563
-									<!-- </li> -->
564
-
565
-								<!-- </ul> -->
566
-							<!-- </div> -->
567
-						<!-- </div> -->
568
-
569
-					<!-- </div> -->
570
-						
571
-					<!--第五屏  话务量统计-->
572
-					<div class="swiper-slide">
573
-						<div class="slideCon_bg trafficVolume clearfix">
574
-							<p class="slide_title slide_title5"></p>
575
-							<div class="orderCon_left slide_left">
576
-								<div class="keyW_t">
577
-									投诉关键字
578
-								</div>
579
-								<div class="tagBox">
580
-									<div class="tagcloud">
581
-									</div>
582
-								</div>
583
-							</div>
584
-							<div class="orderCon_right slide_right">
585
-								<div class="timeWrap lasttimeWrap timeWrapPosi">
586
-									<div class="time_box pull-right form-inline">
587
-										日期
588
-										<input type="text" id="test6" class="times lasttime" style="margin-right: 50px;"/>
589
-										部门
590
-										<select class="depart selects"></select>
591
-									</div>
592
-								</div>
593
-								
594
-								<div class="keyBottom_left pull-left">
595
-									<div class="table_box table_box_key">
596
-										<table class="table">
597
-											<colgroup>
598
-												<col style="width: 120px;" />
599
-												<col/>
600
-											</colgroup>
601
-											<thead class="thead">
602
-												<tr>
603
-													<td>部门名称</td>
604
-													<td>数量</td>
605
-													<td>占比</td>
606
-												</tr>
607
-											</thead>
608
-										</table>
609
-										<div class="scroll_table" style="width: 100%;height: 460px; overflow: hidden;">
610
-											<table class="table">
611
-												<colgroup>
612
-													<col style="width: 120px;" />
613
-													<col/>
614
-												</colgroup>
615
-												<tbody>
616
-												</tbody>
617
-											</table>
618
-										</div>
619
-									</div>
620
-								</div>
621
-							</div>
622
-						</div>
623
-						<!--<div class="slideCon_bg trafficVolume clearfix">
624
-							<p class="slide_title slide_title5"></p>
625
-							<div class="orderCon_left slide_left">
626
-								<div class="tagBox">
627
-									<div class="tagcloud">
628
-										 <div>
629
-										 	<p class="tag_title">文献综述</p>
630
-										 	<p class="imgs">800</p>
631
-										 	<p class="ts_count">投诉量</p>
632
-										 </div>
633
-										  <div>
634
-										 	<p class="tag_title">对外投资</p>
635
-										 	<p class="imgs">800</p>
636
-										 	<p class="ts_count">投诉量</p>
637
-										 </div>
638
-										  <div>
639
-										 	<p class="tag_title">机器人</p>
640
-										 	<p class="imgs">800</p>
641
-										 	<p class="ts_count">投诉量</p>
642
-										 </div>
643
-									      <div>
644
-									      	<p class="tag_title">区块链</p>
645
-										 	<p class="imgs">800</p>
646
-										 	<p class="ts_count">投诉量</p>
647
-									      </div>
648
-									      <div>
649
-									      	<p class="tag_title">计算机科学</p>
650
-										 	<p class="imgs">800</p>
651
-										 	<p class="ts_count">投诉量</p>
652
-									      </div>
653
-									      <div>
654
-									      	<p class="tag_title">科技创新</p>
655
-										 	<p class="imgs">800</p>
656
-										 	<p class="ts_count">投诉量</p>
657
-									      </div>
658
-									      <div>
659
-									      	<p class="tag_title">自动驾驶</p>
660
-										 	<p class="imgs">800</p>
661
-										 	<p class="ts_count">投诉量</p>
662
-									      </div>
663
-									      <div>
664
-									      	<p class="tag_title">研究价值</p>
665
-										 	<p class="imgs">800</p>
666
-										 	<p class="ts_count">投诉量</p>
667
-									      </div>
668
-									      <div>
669
-									      	<p class="tag_title">自然语言处理</p>
670
-										 	<p class="imgs">800</p>
671
-										 	<p class="ts_count">投诉量</p>
672
-									      </div>
673
-									      <div>
674
-									      	<p class="tag_title">模式识别</p>
675
-										 	<p class="imgs">800</p>
676
-										 	<p class="ts_count">投诉量</p>
677
-									      </div>
678
-									</div>
679
-								</div>
680
-							</div>
681
-							<div class="orderCon_right slide_right">
682
-								<div class="timeWrap lasttimeWrap timeWrapPosi">
683
-									<div class="time_box pull-right form-inline">
684
-										地区选择:
685
-										<select class="areaFive selects" style="height: 30px;"></select>
686
-									</div>
687
-								</div>
688
-								<div class="right_top">
689
-									<div id="huawu_tody" style="height: 300px; width: 100%;margin: 0 auto;">
690
-										
691
-									</div>
692
-								</div>
693
-								<div class="right_bottom">
694
-									<div id="jtv_num" style="height: 300px; width: 100%;margin: 0 auto;">
695
-										
696
-									</div>
697
-								</div>
698
-							</div>
699
-
700
-						</div>-->
701
-					</div>
702
-	
703
-				</div>
704
-				
705
-				<div class="swiper-button-prev"></div>
706
-				<div class="swiper-pagination"></div>
707
-				<div class="swiper-button-next"></div>
708
-			</div>
709
-
710
-		</div>
711
-		<script src="js/swiper.min.js"></script>
712
-		<script src="js/swiper.animate1.0.3.min.js"></script>
713
-		<!--<script src="js/jquery.waypoints.min.js"></script>
714
-		<script src="js/jquery.countUp.js"></script>-->
715
-		<script src="js/countUp.js"></script>
716
-		<script src="plugins/numbergd/index.js"></script>
717
-		<script src="js/tagcloud.js"></script>
718
-		<script src="js/index.js"></script>
719
-		<script src="js/setItervalTime.js"></script>
720
-	</body>
721
-
722
-</html>

+ 0 - 288
WebChart/receiptDepartment.html

@@ -1,288 +0,0 @@
1
-<!DOCTYPE html>
2
-<html>
3
-
4
-	<head>
5
-		<meta charset="UTF-8">
6
-		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7
-		<!--优先使用 IE 最新版本和 Chrome-->
8
-		<meta name="renderer" content="webkit" />
9
-		<script src="Script/Common/huayi.load.js"></script>
10
-		<script src="Script/Common/huayi.config.js"></script>
11
-		<link rel="stylesheet" href="css/index.css" />
12
-		<title>接单部门</title>
13
-		<style>
14
-			.selects{
15
-    			height: initial;
16
-    			
17
-			}
18
-			#phone_time{
19
-				width: 199px;
20
-			}
21
-			.selects_box:before{
22
-				z-index: 1;
23
-			}
24
-			.phone_bottom >div:last-child{
25
-				width: 44%;
26
-				margin-left: 1%;
27
-				 background: url(img/jd_bg3.png) no-repeat center;
28
-				 background-size: 100% 100%;
29
-			}
30
-			.phone_bottom >div:first-child{
31
-				 background: url(img/jd_bg2.png) no-repeat center;
32
-				 background-size: 100% 100%;
33
-				width: 55%;
34
-			}
35
-			.phone_bottom >div:first-child table{
36
-				width: 95%;
37
-				margin: 0 auto;
38
-				color: #fff;
39
-				font-size: 12px;
40
-			}
41
-			.table_box{
42
-				margin-top: 30px;
43
-			}
44
-			.table>tbody>tr>td{
45
-				border-top: 1px solid #3160a2;
46
-				color: #00e9ff;
47
-			}
48
-			.table>thead>tr>td{
49
-				border-top: 2px solid #3160a2;
50
-			}
51
-			.table>tbody>tr>td:first-child{
52
-				color: #fff;
53
-			}
54
-			table thead, tbody tr {
55
-	            display:table;
56
-	            width:100%;
57
-	            table-layout:fixed;
58
-	        }
59
-	       .table>tbody>tr>td:last-child{
60
-	        	color: #95e193;
61
-	        }
62
-	       .table>tbody>tr>td:nth-last-child(2){
63
-	        	color: #ec6969!important;
64
-	        }
65
-	        .selects {
66
-				height: 30px;
67
-				margin-right: 15px;
68
-			}
69
-			.time_box1 {
70
-			    color: #00e9ff;
71
-			    
72
-			}
73
-		</style>
74
-	</head>
75
-
76
-	<body>
77
-		<!--导航栏开始-->
78
-		<div id="nav" class="clearfix">
79
-			<div class="nav_left"><img src="img/nav_l.png" alt="" /></div>
80
-			<div class="nav_middle">
81
-				<ul class="clearfix">
82
-					<li>
83
-						<a href="./sourceChannel.html"><img src="img/lyqd_0.png" alt="" /></a>
84
-					</li>
85
-					<li>
86
-						<a href="./receiptDepartment.html"><img src="img/jdbm_1.png" alt="" /></a>
87
-					</li>
88
-					<li>
89
-						<a href="./index.html"><img src="img/title.png" alt="" /></a>
90
-					</li>
91
-					<li>
92
-						<a href="./TelephoneDetails.html"><img src="img/hwsl_0.png" alt="" /></a>
93
-					</li>
94
-					<li>
95
-						<a href="./complaintsReport.html"><img src="img/tsjb_0.png" alt="" /></a>
96
-					</li>
97
-				</ul>
98
-
99
-			</div>
100
-			<div class="nav_right"><img src="img/nav_r.png" alt="" /></div>
101
-		</div>
102
-		<!--导航栏结束-->
103
-		<div id="wrap" class="container">
104
-				<div class="phone_top">
105
-				<div class="legend_bar clearfix">
106
-					<div class="title_word pull-left">
107
-						<span class="col-line"></span> 工单状态统计
108
-					</div>
109
-					<div class="time_box1 pull-right form-inline">
110
-						地区选择:
111
-						<select class="areaOne selects"></select>
112
-					</div>
113
-					<!--<div class="time_box pull-right form-inline selects_box">
114
-						筛选<select name="" class="selects" id="">
115
-							<option value="">全部</option>
116
-							<option value="">已审核</option>
117
-							<option value="">未审核</option>
118
-							<option value="">未审核</option>
119
-							<option value="">未审核</option>
120
-						</select>
121
-					</div>-->
122
-				</div>
123
-				<div id="phoneTimeCount" style="width: 100%;height: 400px;"></div>
124
-			</div>
125
-			<!--<div class="row">-->
126
-				<div class="phone_bottom clearfix">
127
-				<div class="bottom_left pull-left">
128
-					<div class="legend_bar clearfix">
129
-					<div class="title_word pull-left">
130
-						<span class="col-line"></span> 各部门受理工单情况统计
131
-					</div>
132
-					<div class="time_box pull-right form-inline">
133
-						部门
134
-						<select class="depart selects" style="width: 200px;"></select>
135
-						日期<input type="text" id="phone_time" class="times" />
136
-					</div>
137
-
138
-				</div>
139
-					<!--各部门受理工单情况统计-->
140
-					<!--<div id="phoneTimeCount" style="width: 100%;height: 390px;"></div>-->
141
-					<div class="table_box" style="width: 100%;height: 390px;">
142
-						<table class="table">
143
-							<colgroup>
144
-				                <col style="width: 120px;"/>
145
-				                <col/>
146
-						    </colgroup>
147
-						    <thead class="thead">
148
-								<tr>
149
-									<td>部门名称</td>
150
-									<td>咨询</td>
151
-									<td>求助</td>
152
-									<td>建议</td>
153
-									<td>表扬</td>
154
-									<td>其他</td>
155
-									<td>合计工单</td>
156
-									<td>占比</td>
157
-								</tr>
158
-							</thead>
159
-						</table>
160
-						<div id="scroll_table"  style="width: 100%;height: 300px; overflow: hidden;">
161
-							<table class="table">
162
-							<colgroup>
163
-						                <col style="width: 120px;"/>
164
-						                <col/>
165
-						    </colgroup>
166
-							<tbody>
167
-								<tr>
168
-									<td>市公安局</td>
169
-									<td><span class="text_color1">20</span></td>
170
-									<td><span class="text_color1">20</span></td>
171
-									<td><span class="text_color1">20</span></td>
172
-									<td><span class="text_color1">20</span></td>
173
-									<td><span class="text_color1">20</span></td>
174
-									<td><span class="text_color2">120</span></td>
175
-									<td><span class="text_color3">20%</span></td>
176
-								</tr>
177
-								<tr>
178
-									<td>市公安局</td>
179
-									<td><span class="text_color1">20</span></td>
180
-									<td><span class="text_color1">20</span></td>
181
-									<td><span class="text_color1">20</span></td>
182
-									<td><span class="text_color1">20</span></td>
183
-									<td><span class="text_color1">20</span></td>
184
-									<td><span class="text_color2">120</span></td>
185
-									<td><span class="text_color3">20%</span></td>
186
-								</tr>
187
-								<tr>
188
-									<td>市公安局</td>
189
-									<td><span class="text_color1">20</span></td>
190
-									<td><span class="text_color1">20</span></td>
191
-									<td><span class="text_color1">20</span></td>
192
-									<td><span class="text_color1">20</span></td>
193
-									<td><span class="text_color1">20</span></td>
194
-									<td><span class="text_color2">120</span></td>
195
-									<td><span class="text_color3">20%</span></td>
196
-								</tr>
197
-								<tr>
198
-									<td>市公安局</td>
199
-									<td><span class="text_color1">20</span></td>
200
-									<td><span class="text_color1">20</span></td>
201
-									<td><span class="text_color1">20</span></td>
202
-									<td><span class="text_color1">20</span></td>
203
-									<td><span class="text_color1">20</span></td>
204
-									<td><span class="text_color2">120</span></td>
205
-									<td><span class="text_color3">20%</span></td>
206
-								</tr>
207
-								<tr>
208
-									<td>市公安局</td>
209
-									<td><span class="text_color1">20</span></td>
210
-									<td><span class="text_color1">20</span></td>
211
-									<td><span class="text_color1">20</span></td>
212
-									<td><span class="text_color1">20</span></td>
213
-									<td><span class="text_color1">20</span></td>
214
-									<td><span class="text_color2">120</span></td>
215
-									<td><span class="text_color3">20%</span></td>
216
-								</tr>
217
-								<tr>
218
-									<td>市公安局</td>
219
-									<td><span class="text_color1">20</span></td>
220
-									<td><span class="text_color1">20</span></td>
221
-									<td><span class="text_color1">20</span></td>
222
-									<td><span class="text_color1">20</span></td>
223
-									<td><span class="text_color1">20</span></td>
224
-									<td><span class="text_color2">120</span></td>
225
-									<td><span class="text_color3">20%</span></td>
226
-								</tr>
227
-								<tr>
228
-									<td>市公安局</td>
229
-									<td><span class="text_color1">20</span></td>
230
-									<td><span class="text_color1">20</span></td>
231
-									<td><span class="text_color1">20</span></td>
232
-									<td><span class="text_color1">20</span></td>
233
-									<td><span class="text_color1">20</span></td>
234
-									<td><span class="text_color2">120</span></td>
235
-									<td><span class="text_color3">20%</span></td>
236
-								</tr>
237
-								<tr>
238
-									<td>市公安局</td>
239
-									<td><span class="text_color1">20</span></td>
240
-									<td><span class="text_color1">20</span></td>
241
-									<td><span class="text_color1">20</span></td>
242
-									<td><span class="text_color1">20</span></td>
243
-									<td><span class="text_color1">20</span></td>
244
-									<td><span class="text_color2">120</span></td>
245
-									<td><span class="text_color3">20%</span></td>
246
-								</tr>
247
-								<tr>
248
-									<td>市公安局</td>
249
-									<td><span class="text_color1">20</span></td>
250
-									<td><span class="text_color1">20</span></td>
251
-									<td><span class="text_color1">20</span></td>
252
-									<td><span class="text_color1">20</span></td>
253
-									<td><span class="text_color1">20</span></td>
254
-									<td><span class="text_color2">120</span></td>
255
-									<td><span class="text_color3">20%</span></td>
256
-								</tr>
257
-								
258
-							</tbody>
259
-							
260
-						</table>
261
-						
262
-						</div>
263
-						
264
-					</div>
265
-				</div>
266
-				<div class="bottom_right pull-left">
267
-					<div class="legend_bar clearfix">
268
-					<div class="title_word pull-left">
269
-						<span class="col-line"></span> 工单处理时间分布
270
-					</div>
271
-					
272
-					<div class="time_box pull-right form-inline">
273
-						日期<input type="text" id="tody_time" class="times"/>
274
-					</div>
275
-
276
-				</div>
277
-					<!--话务量实时统计-->
278
-					<div id="sitProportion" style=" width: 95%;height: 385px;"></div>
279
-				</div>
280
-
281
-			</div>
282
-			<!--</div>-->
283
-		</div>
284
-		<script src="js/receiptDepartment.js"></script>
285
-		<script src="js/setItervalTime.js"></script>
286
-	</body>
287
-
288
-</html>

+ 0 - 261
WebChart/sourceChannel.html

@@ -1,261 +0,0 @@
1
-<!DOCTYPE html>
2
-<html>
3
-
4
-	<head>
5
-		<meta charset="UTF-8">
6
-		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7
-		<!--优先使用 IE 最新版本和 Chrome-->
8
-		<meta name="renderer" content="webkit" />
9
-		<script src="Script/Common/huayi.load.js"></script>
10
-		<script src="Script/Common/huayi.config.js"></script>
11
-		<link rel="stylesheet" href="css/index.css" />
12
-		<title>来源渠道</title>
13
-		<style>
14
-			.selects {
15
-				height: initial;
16
-			}
17
-			
18
-			#time2,
19
-			#time3 {
20
-				width: 198px;
21
-			}
22
-			.phone_bottom>div:last-child {
23
-				width: 49%;
24
-				margin-left: 1%;
25
-				background: url(img/jd_bg2.png) no-repeat center;
26
-				background-size: 100% 100%;
27
-			}
28
-			
29
-			.phone_bottom>div:first-child {
30
-				background: url(img/jd_bg2.png) no-repeat center;
31
-				background-size: 100% 100%;
32
-				width: 50%;
33
-			}
34
-			
35
-			.phone_bottom>div:first-child table {
36
-				width: 95%;
37
-				margin: 0 auto;
38
-				color: #fff;
39
-				font-size: 12px;
40
-			}
41
-			
42
-			.table_box {
43
-				margin-top: 30px;
44
-			}
45
-			
46
-			.table>tbody>tr>td {
47
-				border-top: 1px solid #3160a2;
48
-			}
49
-			
50
-			.table>thead>tr>td {
51
-				border-top: 2px solid #3160a2;
52
-			}
53
-			
54
-			.text_color1 {
55
-				color: #00e9ff;
56
-			}
57
-			
58
-			.text_color2 {
59
-				color: #ec6969;
60
-			}
61
-			
62
-			.text_color3 {
63
-				color: #95e193;
64
-			}
65
-			
66
-			table thead,
67
-			tbody tr {
68
-				display: table;
69
-				width: 100%;
70
-				table-layout: fixed;
71
-			}
72
-			
73
-			.quadrangle {
74
-				display: inline-block;
75
-				width: 9px;
76
-				height: 20px;
77
-				background: #69e1a9;
78
-				transform: skewX(20deg);
79
-			}
80
-			
81
-			.bottom_right li {
82
-				position: relative;
83
-				width: 134px;
84
-				height: 20px;
85
-				line-height: 15px;
86
-				margin-top: 35px;
87
-			
88
-			}
89
-			.bottom_right ul.complaint_typeL li{
90
-				text-align: right;
91
-					margin-left: 30px;
92
-			}
93
-			.bottom_right ul.complaint_typeR li{
94
-					text-align: left;
95
-					/*margin-right: 25px;*/
96
-			}
97
-			
98
-			.bottom_right ul li:nth-of-type(1) {
99
-				margin-top: 40px;
100
-				background: url(img/sbx_line0.png) no-repeat;
101
-			}
102
-			
103
-			.bottom_right ul li:nth-of-type(2) {
104
-				background: url(img/sbx_line1.png) no-repeat;
105
-			}
106
-			.bottom_right ul.complaint_typeR li:nth-of-type(1) {
107
-				background: url(img/sbx_liner0.png) no-repeat;
108
-			}
109
-			.bottom_right ul.complaint_typeR li:nth-of-type(2) {
110
-				background: url(img/sbx_liner1.png) no-repeat;
111
-			}
112
-			
113
-			.bottom_right ul li:nth-of-type(3) {
114
-				background: url(img/sbx_line2.png) no-repeat;
115
-			}
116
-			.bottom_right ul.complaint_typeR li:nth-of-type(3) {
117
-				background: url(img/sbx_liner2.png) no-repeat;
118
-			}
119
-			.bottom_right ul li:nth-of-type(4) {
120
-				background: url(img/sbx_line3.png) no-repeat;
121
-			}
122
-			.bottom_right ul.complaint_typeR li:nth-of-type(4) {
123
-				background: url(img/sbx_liner3.png) no-repeat;
124
-			}
125
-			.bottom_right ul li:nth-of-type(5) {
126
-				background: url(img/sbx_line4.png) no-repeat;
127
-			}
128
-			.bottom_right ul.complaint_typeR li:nth-of-type(5) {
129
-				background: url(img/sbx_liner4.png) no-repeat;
130
-			}
131
-			.bottom_right ul li:nth-of-type(6) {
132
-				background: url(img/sbx_line5.png) no-repeat;
133
-			}
134
-			.bottom_right ul.complaint_typeR li:nth-of-type(6) {
135
-				background: url(img/sbx_liner5.png) no-repeat;
136
-			}
137
-			
138
-			.type_name {
139
-				color: #00e9ff;
140
-			}
141
-			
142
-			.type_count {
143
-				color: #fff;
144
-				margin-left: 18px;
145
-			}
146
-			.time_box1 {
147
-			    color: #00e9ff;
148
-			    position: absolute;
149
-			    top: 20px;
150
-			    right: 20px;
151
-			    
152
-			}
153
-		</style>
154
-	</head>
155
-
156
-	<body>
157
-		<!--导航栏开始-->
158
-		<div id="nav" class="clearfix">
159
-			<div class="nav_left"><img src="img/nav_l.png" alt="" /></div>
160
-			<div class="nav_middle">
161
-				<ul class="clearfix">
162
-					<li>
163
-						<a href="./sourceChannel.html"><img src="img/lyqd_1.png" alt="" /></a>
164
-					</li>
165
-					<li>
166
-						<a href="./receiptDepartment.html"><img src="img/jdbm_0.png" alt="" /></a>
167
-					</li>
168
-					<li>
169
-						<a href="./index.html"><img src="img/title.png" alt="" /></a>
170
-					</li>
171
-					<li>
172
-						<a href="./TelephoneDetails.html"><img src="img/hwsl_0.png" alt="" /></a>
173
-					</li>
174
-					<li>
175
-						<a href="./complaintsReport.html"><img src="img/tsjb_0.png" alt="" /></a>
176
-					</li>
177
-				</ul>
178
-
179
-			</div>
180
-			<div class="nav_right"><img src="img/nav_r.png" alt="" /></div>
181
-		</div>
182
-		<!--导航栏结束-->
183
-		<div id="wrap" class="container">
184
-			<div class="phone_top">
185
-				<div class="legend_bar clearfix">
186
-					<div class="title_word pull-left">
187
-						<span class="col-line"></span> 受理群众区域统计
188
-					</div>
189
-					<div class="time_box1 pull-right form-inline">
190
-						
191
-						地区选择:
192
-						<select class="areaOne selects"></select>
193
-						日期<input type="text" id="time1" class="times" />
194
-					</div>
195
-				</div>
196
-				<div id="part_1" style="width: 100%;height: 400px;"></div>
197
-			</div>
198
-			<!--<div class="row">-->
199
-			<div class="phone_bottom clearfix">
200
-				<div class="bottom_left pull-left">
201
-					<div class="legend_bar clearfix">
202
-						<div class="title_word pull-left">
203
-							<span class="col-line"></span> 渠道来源统计
204
-						</div>
205
-						<div class="time_box pull-right form-inline">
206
-							日期<input type="text" id="time2" class="times" />
207
-						</div>
208
-					</div>
209
-					<!--渠道来源统计-->
210
-					<div id="source" style="width: 100%; height: 390px;"></div>
211
-				</div>
212
-
213
-				<div class="bottom_right pull-left">
214
-					<div class="legend_bar clearfix">
215
-						<div class="title_word pull-left">
216
-							<span class="col-line"></span> 受理区域统计
217
-						</div>
218
-						<div class="time_box pull-right form-inline">
219
-							日期<input type="text" id="time3" class="times" />
220
-						</div>
221
-
222
-					</div>
223
-					<div class="clearfix">
224
-						<ul class="pull-left complaint_typeL" style=" width:25%;">
225
-							<li>
226
-								<span class="type_name">咨询</span> <span class="type_count">956</span>
227
-							</li>
228
-							<li>
229
-								<span class="type_name">建议</span> <span class="type_count">956</span>
230
-							</li>
231
-							<li> <span class="type_name">咨询</span> <span class="type_count">956</span></li>
232
-							<li> <span class="type_name">咨询</span> <span class="type_count">956</span></li>
233
-							<li> <span class="type_name">咨询</span> <span class="type_count">956</span></li>
234
-							<li> <span class="type_name">咨询</span> <span class="type_count">956</span></li>
235
-						</ul>
236
-						<!--投诉分类统计-->
237
-						<div class="pull-left" id="part3" style=" width: 50%;height: 340px;"></div>
238
-						
239
-						<ul class="pull-left complaint_typeR" style=" width:25%;">
240
-							<li>
241
-								<span class="type_name">咨询</span> <span class="type_count">956</span>
242
-							</li>
243
-							<li>
244
-								<span class="type_name">建议</span> <span class="type_count">956</span>
245
-							</li>
246
-							<li> <span class="type_name">咨询</span> <span class="type_count">956</span></li>
247
-							<li> <span class="type_name">咨询</span> <span class="type_count">956</span></li>
248
-							<li> <span class="type_name">咨询</span> <span class="type_count">956</span></li>
249
-							<li> <span class="type_name">咨询</span> <span class="type_count">956</span></li>
250
-						</ul>
251
-					</div>
252
-				</div>
253
-
254
-			</div>
255
-			<!--</div>-->
256
-		</div>
257
-		<script src="js/sourceChannel.js"></script>
258
-		<script src="js/setItervalTime.js"></script>
259
-	</body>
260
-
261
-</html>

+ 0 - 73
WebChartNewEdit/WebChartNew/.project

@@ -1,73 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8"?>
2
-<projectDescription>
3
-	<name>XlxWebChart</name>
4
-	<comment></comment>
5
-	<projects>
6
-	</projects>
7
-	<buildSpec>
8
-		<buildCommand>
9
-			<name>com.aptana.ide.core.unifiedBuilder</name>
10
-			<arguments>
11
-			</arguments>
12
-		</buildCommand>
13
-	</buildSpec>
14
-	<natures>
15
-		<nature>com.aptana.projects.webnature</nature>
16
-	</natures>
17
-	<filteredResources>
18
-		<filter>
19
-			<id>0</id>
20
-			<name></name>
21
-			<type>26</type>
22
-			<matcher>
23
-				<id>org.eclipse.ui.ide.multiFilter</id>
24
-				<arguments>1.0-name-matches-false-false-node_modules</arguments>
25
-			</matcher>
26
-		</filter>
27
-		<filter>
28
-			<id>0</id>
29
-			<name></name>
30
-			<type>26</type>
31
-			<matcher>
32
-				<id>org.eclipse.ui.ide.multiFilter</id>
33
-				<arguments>1.0-name-matches-false-false-node_modules</arguments>
34
-			</matcher>
35
-		</filter>
36
-		<filter>
37
-			<id>0</id>
38
-			<name></name>
39
-			<type>26</type>
40
-			<matcher>
41
-				<id>org.eclipse.ui.ide.multiFilter</id>
42
-				<arguments>1.0-name-matches-false-false-node_modules</arguments>
43
-			</matcher>
44
-		</filter>
45
-		<filter>
46
-			<id>0</id>
47
-			<name></name>
48
-			<type>26</type>
49
-			<matcher>
50
-				<id>org.eclipse.ui.ide.multiFilter</id>
51
-				<arguments>1.0-name-matches-false-false-node_modules</arguments>
52
-			</matcher>
53
-		</filter>
54
-		<filter>
55
-			<id>1570779071922</id>
56
-			<name></name>
57
-			<type>26</type>
58
-			<matcher>
59
-				<id>org.eclipse.ui.ide.multiFilter</id>
60
-				<arguments>1.0-name-matches-false-false-node_modules</arguments>
61
-			</matcher>
62
-		</filter>
63
-		<filter>
64
-			<id>1570963038501</id>
65
-			<name></name>
66
-			<type>26</type>
67
-			<matcher>
68
-				<id>org.eclipse.ui.ide.multiFilter</id>
69
-				<arguments>1.0-name-matches-false-false-node_modules</arguments>
70
-			</matcher>
71
-		</filter>
72
-	</filteredResources>
73
-</projectDescription>

+ 2 - 3
WebChartNewEdit/css/index.css

@@ -488,8 +488,7 @@ input::-webkit-input-placeholder {
488 488
 	color: #333;
489 489
 	font-size: 13px;
490 490
 	text-decoration: none;
491
-	background: #0057A7;
492
-	border: 1px solid #0059AD;
491
+	border: 1px solid #00e9ff;
493 492
 	width: 90%;
494 493
 	height: 267px;
495 494
 	margin: 10px;
@@ -549,7 +548,7 @@ input::-webkit-input-placeholder {
549 548
 	font-size: 16px;
550 549
 	line-height: 23px;
551 550
 	height: 23px;
552
-	color: #fff;
551
+	color: #00e9ff;
553 552
 	width: 100%;
554 553
 	position: relative;
555 554
 	overflow: hidden;

+ 3 - 3
WebChartNewEdit/index.html

@@ -375,8 +375,8 @@
375 375
 										</div>
376 376
 									
377 377
 										<div class="pieClass">
378
-											<div id="pieChart0" class="pieDiv"></div>
379
-											<div id="pieChart1" class="pieDiv"></div>
378
+											<div id="pieChart0" class="pieDiv1" ></div>
379
+											<!--<div id="pieChart1" class="pieDiv"></div>
380 380
 											<div id="pieChart2" class="pieDiv"></div>
381 381
 											<div id="pieChart3" class="pieDiv"></div>
382 382
 											<div id="pieChart4" class="pieDiv"></div>
@@ -386,7 +386,7 @@
386 386
 											<div id="pieChart8" class="pieDiv"></div>
387 387
 											<div id="pieChart9" class="pieDiv"></div>
388 388
 											<div id="pieChart10" class="pieDiv"></div>
389
-											<div id="pieChart11" class="pieDiv"></div>
389
+											<div id="pieChart11" class="pieDiv"></div>-->
390 390
 										</div>
391 391
 									</div>
392 392
 								</div>

+ 53 - 18
WebChartNewEdit/js/index.js

@@ -36,8 +36,14 @@ $(function() {
36 36
 		format: 'yyyy-MM-dd',
37 37
 		theme: '#114a97',
38 38
 			done: function(value, date) {
39
-			keyWordDetail(value && value.split(' ~ ')[0], value && value.split(' ~ ')[1],$(".areaTwo").val())
40
-		}
39
+				//获取数据
40
+				$(".pieClass").hide();
41
+				$(".table").hide();
42
+				$(".scroll_table").hide();
43
+				getPiedatas(value && value.split(' ~ ')[0], value && value.split(' ~ ')[1]);
44
+				initPies();
45
+				keyWordDetail(value && value.split(' ~ ')[0], value && value.split(' ~ ')[1])
46
+			}
41 47
 	});
42 48
 	laydate.render({
43 49
 		elem: '#time1',
@@ -197,42 +203,66 @@ $(".tagcloud").on("click","div",function(){
197 203
 	$(".tagcloud div").removeClass("tagcloud_bjShine");
198 204
 	$(this).removeClass("tagcloud_bj");
199 205
 	$(this).addClass("tagcloud_bjShine");
200
-    //keyWordDetail($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1]);
201 206
 });
202 207
 quesTypeSel();  
203 208
 	 
204 209
 $("#Product_Category").change(function() {
205
-	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1],$(".areaFive").val());
210
+	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1]);
206 211
   })
207 212
 $("#customer_taxPointDes").change(function() {
208
-	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1],$(".areaFive").val());
213
+	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1]);
209 214
   })
210 215
 $("#customer_exceed").change(function() {
211
-	keyWordDetail($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1],$(".areaFive").val());
216
+	//获取数据
217
+	$(".pieClass").hide();
218
+	$(".table").hide();
219
+	$(".scroll_table").hide();
220
+	getPiedatas($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1]);
221
+	initPies();
222
+	keyWordDetail($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1]);
223
+	
212 224
 })
213 225
 $("#styqu").change(function() {
214
-	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1],$(".areaFive").val());
226
+	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1]);
215 227
 })
216 228
 $("#customer_legalName").change(function() {
217
-	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1],$(".areaFive").val());
229
+	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1]);
218 230
 })
219 231
 $("#customer_comaddress").change(function() {
220
-	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1],$(".areaFive").val());
232
+	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1]);
221 233
 })
222 234
 $("#xiaoshou").change(function() {
223
-	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1],$(".areaFive").val());
235
+	partpaat($('#time1').val() && $('#time1').val().split(' ~ ')[0], $('#time1').val() && $('#time1').val().split(' ~ ')[1]);
224 236
 })
225 237
 $("#time3").change(function() {
226 238
     oneSel(sd,ed);
227 239
 })
228 240
 $(".quesType").change(function() {
229
-	keyWordDetail($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1],$(".areaFive").val());
241
+	$(".pieClass").hide();
242
+	$(".table").hide();
243
+	$(".scroll_table").hide();
244
+	getPiedatas($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1]);
245
+	initPies();
246
+	keyWordDetail($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1]);
247
+	
230 248
 })
231 249
 $("#product_name").change(function() {
232
-	keyWordDetail($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1],$(".areaFive").val());
250
+	$(".pieClass").hide();
251
+	$(".table").hide();
252
+	$(".scroll_table").hide();
253
+	getPiedatas($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1]);
254
+	initPies();
255
+	keyWordDetail($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1]);
256
+	
233 257
 })
234 258
 $("#category").change(function() {
235
-	keyWordDetail($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1],$(".areaFive").val());
259
+	$(".pieClass").hide();
260
+	$(".table").hide();
261
+	$(".scroll_table").hide();
262
+	getPiedatas($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1]);
263
+	initPies();
264
+	keyWordDetail($('#time2').val() && $('#time2').val().split(' ~ ')[0], $('#time2').val() && $('#time2').val().split(' ~ ')[1]);
265
+	
236 266
 })
237 267
 //部门下拉框
238 268
 function quesTypeSel() {
@@ -255,6 +285,7 @@ function quesTypeSel() {
255 285
 }
256 286
 
257 287
 function textCon() {
288
+	debugger
258 289
 	$.ajax({
259 290
 		type: "get",
260 291
 		url: huayi.config.callcenter_url + "WOReport/GetComplainthandlList",
@@ -270,15 +301,17 @@ function textCon() {
270 301
 		},
271 302
 		success: function(data) {
272 303
 			if(data.state.toLowerCase() == 'success') {
304
+				
273 305
 				var con = data.rows;
274 306
 				var arr;
275 307
 				$.each(con, function(index, ele) {
308
+					debugger
276 309
 					arr = con[index].worker; //console.log(allData);
277 310
 					console.log(JSON.stringify(arr))
278 311
 					console.log(arr.overtime)
279 312
 				});
280
-				if (arr) {
281
-					$(arr).each(function(k, j) {
313
+				if (con[0].worker) {
314
+					$(con[0].worker).each(function(k, j) {
282 315
 						var strs = '<div index="" class="tagcloud_bj">' +
283 316
 							'<p class="tag_title" style="margin-top:7px">'+
284 317
 							'<span class="danhao">'+"工单编号" + '</span>'+
@@ -311,7 +344,6 @@ function textCon() {
311 344
 						"height": "auto"
312 345
 					});
313 346
 					$(".aacdu").css({
314
-						"color": "#FFFFFF",
315 347
 						"font-size": 16*getHeightScale+"px",
316 348
 						"line-height": 23*getHeightScale+"px",
317 349
 						"height": 23*getHeightScale+"px",
@@ -393,7 +425,6 @@ function keyWordDetail(start,end) {
393 425
 						"height": 23*getHeightScale+"px"
394 426
 					});
395 427
 					$(".aacdu").css({
396
-						"color": "#FFFFFF",
397 428
 						"font-size": 16*getHeightScale+"px",
398 429
 						"line-height": 23*getHeightScale+"px",
399 430
 						"height": 23*getHeightScale+"px",
@@ -417,7 +448,10 @@ function keyWordDetail(start,end) {
417 448
 				}
418 449
 				
419 450
 				if (con.length>11) {
451
+					debugger
420 452
 					$(".pieClass").hide();
453
+					$(".table").show();
454
+					$(".scroll_table").show();
421 455
 					$(con).each(function (j, n) {
422 456
 	                    var rate = '';
423 457
 	                    if (n.rate) { rate = n.rate;}
@@ -440,7 +474,8 @@ function keyWordDetail(start,end) {
440 474
 				}
441 475
 				$(".scroll_table").css({
442 476
 						"width": "100%",
443
-						"height": 460*getHeightScale+"px"
477
+						"height": 460*getHeightScale+"px",
478
+						"overflow": "hidden"
444 479
 				});
445 480
 				$(".table>tbody>tr>td").css({
446 481
 						"padding": 8*getHeightScale+"px"

+ 0 - 1
WebChartNewEdit/js/liuzhangtu.js

@@ -78,7 +78,6 @@ function partpaat(sd, ed) {
78 78
 				$('.myd_yer').html(con.satisfaction[0].Lastyear);
79 79
 				$('.myd_moye').html(con.satisfaction[0].Lastmonth);
80 80
 				var channel = con.channel.slice(1);
81
-				console.log(channel);
82 81
 				var overdue = con.overdue.slice(1);
83 82
 				var product = con.product.slice(1);
84 83
 				var stateaa = con.state.slice(1);

+ 11 - 0
WebChartNewEdit/js/resolution.js

@@ -242,6 +242,17 @@ function changeSize(){
242 242
 		"line-height": 32*getHeightScale+"px"
243 243
 	});
244 244
 	
245
+	$(".pieDiv1").css({
246
+		"width": 730*getHeightScale+"px",
247
+		"height": 520*getHeightScale+"px"
248
+	});
249
+	$("#time2").css({
250
+		"width": 230*getHeightScale+"px"
251
+	});
252
+	$("#time1").css({
253
+		"width": 230*getHeightScale+"px"
254
+	});
255
+	
245 256
 }
246 257
 
247 258