Przeglądaj źródła

Merge branch 'master' of http://192.168.1.222:3000/zhoufan/12345_Base_Web

zhangshuangnan 8 lat temu
rodzic
commit
e99d4c5e7a
28 zmienionych plików z 59 dodań i 194 usunięć
  1. 4 1
      WebSite/css/indexs.css
  2. 13 45
      WebSite/index.html
  3. 2 0
      WebUI/CallCenterWeb.UI/Appeal/AddAppeal.html
  4. 8 27
      WebUI/CallCenterWeb.UI/Appeal/Lawsuit.html
  5. 0 80
      WebUI/CallCenterWeb.UI/Appeal/gongdan.json
  6. 1 2
      WebUI/CallCenterWeb.UI/Business/LeaderDB.html
  7. 1 1
      WebUI/CallCenterWeb.UI/Business/LeaderDCL.html
  8. 1 1
      WebUI/CallCenterWeb.UI/Business/LeaderYJA.html
  9. 1 2
      WebUI/CallCenterWeb.UI/Business/LeaderYJB.html
  10. 1 2
      WebUI/CallCenterWeb.UI/Business/LeaderYJC.html
  11. 2 2
      WebUI/CallCenterWeb.UI/Business/LeaderYTH.html
  12. 1 2
      WebUI/CallCenterWeb.UI/Business/LeaderYYS.html
  13. 1 2
      WebUI/CallCenterWeb.UI/Business/LeaderYZB.html
  14. 1 2
      WebUI/CallCenterWeb.UI/Business/WorkDC.html
  15. 1 2
      WebUI/CallCenterWeb.UI/Business/WorkDCCO.html
  16. 1 2
      WebUI/CallCenterWeb.UI/Business/WorkYBL.html
  17. 2 2
      WebUI/CallCenterWeb.UI/Business/WorkYCS.html
  18. 2 2
      WebUI/CallCenterWeb.UI/Business/WorkYSQTH.html
  19. 1 2
      WebUI/CallCenterWeb.UI/Business/WorkYSQYS.html
  20. 1 2
      WebUI/CallCenterWeb.UI/Business/ZXDCL.html
  21. 2 2
      WebUI/CallCenterWeb.UI/Business/ZXDCLs.html
  22. 2 2
      WebUI/CallCenterWeb.UI/Business/ZXYHF.html
  23. 2 2
      WebUI/CallCenterWeb.UI/Business/ZXYHFs.html
  24. 1 2
      WebUI/CallCenterWeb.UI/Business/ZXYTJ.html
  25. 2 2
      WebUI/CallCenterWeb.UI/Business/ZXYTJs.html
  26. 1 2
      WebUI/CallCenterWeb.UI/Business/notifiedList.html
  27. 1 0
      WebUI/CallCenterWeb.UI/YeWu/keywordsStatistics.html
  28. 3 1
      WebUI/CallCenterWeb.UI/css/Table/table1.css

+ 4 - 1
WebSite/css/indexs.css

@@ -1841,6 +1841,9 @@ ul.acceptance>li>img {
1841 1841
 .right-statistics p{
1842 1842
 	margin-bottom: 20px;
1843 1843
 }
1844
+.left-statistics p:nth-of-type(1){
1845
+	margin-bottom: 10px;
1846
+}
1844 1847
 .left-statistics span,
1845 1848
 .right-statistics span{
1846 1849
 	color: #626262;
@@ -1867,7 +1870,7 @@ ul.acceptance>li>img {
1867 1870
 	position: relative;
1868 1871
 	height: 40px;
1869 1872
 	margin-bottom: 10px;
1870
-	margin-left: 12px;
1873
+	width: 25%;
1871 1874
 }
1872 1875
 .statistics-content li span:nth-of-type(1){
1873 1876
 	padding-left: 24px;

+ 13 - 45
WebSite/index.html

@@ -212,9 +212,13 @@
212 212
 											<p>
213 213
 												<span>12345政府热线共受理:</span>
214 214
 												<span id="totalCount">0件</span>
215
-												<span style="width: 20px;display: inline-block;"></span>
215
+											</p>
216
+											<p>
216 217
 												<span>今日共受理:</span>
217
-												<span id="jrtotalCount">320件</span>
218
+												<span id="jrtotalCount">0件</span>
219
+												<span style="width: 80px;display: inline-block;"></span>
220
+												<span>今日共交办:</span>
221
+												<span id="jrtotalCountJ">0件</span>
218 222
 											</p>
219 223
 											<ul class="left-statistics-content statistics-content clearfix">
220 224
 												<li>
@@ -224,7 +228,7 @@
224 228
 												</li>
225 229
 												<li>
226 230
 													<i class="statistics-icon statistics-icon-2"></i>
227
-													<span>市长信箱</span>
231
+													<span>12345信箱</span>
228 232
 													<span id="szxxslCount">0</span>
229 233
 												</li>
230 234
 												<li>
@@ -782,17 +786,12 @@
782 786
 			
783 787
 			//实时统计
784 788
 			function statistics() {
785
-//				var qtslCount = 0,
786
-//					totalCount = 0,
787
-//					jrqtslCount = 0,
788
-				var totalCount = 0 ,
789
-					jrtotalCount = 0;
789
+				var totalCount = 0 ;
790 790
 				$.post(huayi.config.callcenter_url + "web/GetWebSourceCount", {
791 791
 				
792 792
 				}, function(result) {
793 793
 					result = JSON.parse(result);
794 794
 					var content = result.data;
795
-					
796 795
 					//政府热线共受理
797 796
 					for(var i = 0; i < content.total.length; i++){
798 797
 						
@@ -814,8 +813,8 @@
814 813
 							$('#wxslCount').html(wxslCount);
815 814
 						
816 815
 						}
817
-						else if(content.total[i].Source == '市长信箱'){
818
-							//市长信箱
816
+						else if(content.total[i].Source == '12345信箱'){
817
+							//12345信箱
819 818
 							var szxxslCount = content.total[i].Count;
820 819
 							$('#szxxslCount').html(szxxslCount);
821 820
 						
@@ -836,44 +835,13 @@
836 835
 							$('#zffwwCount').html(zffwwCount);
837 836
 						
838 837
 						}
839
-//						else{
840
-//							//其他受理
841
-//							qtslCount += content.total[i].Count;
842
-//							$('#qtslCount').html(qtslCount);
843
-//						}
844 838
 					}
845 839
 					//政府热线合计
846 840
 					$('#totalCount').html(totalCount+'件');
847
-					
848 841
 					//今日共受理
849
-					for(var i = 0; i < content.day.length; i++){						
850
-						//debugger;
851
-						jrtotalCount += content.day[i].Count;
852
-//						if(content.day[i].Source == '电话'){
853
-//							//电话受理
854
-//							var jrdhslCount = content.day[i].Count;
855
-//							$('#jrdhslCount').html(jrdhslCount);
856
-//						
857
-//						}
858
-//						else if(content.day[i].Source == '手机APP'){
859
-//							//App受理
860
-//							var jraslCount = content.day[i].Count;
861
-//							$('#jraslCount').html(jraslCount);
862
-//						
863
-//						}else if(content.day[i].Source == '微信'){
864
-//							//微信受理
865
-//							var jrwxslCount = content.day[i].Count;
866
-//							$('#jrwxslCount').html(jrwxslCount);
867
-//						
868
-//						}
869
-//						else{
870
-//							//其他受理
871
-//							jrqtslCount += content.day[i].Count;
872
-//							$('#jrqtslCount').html(jrqtslCount);
873
-//						}
874
-					}
875
-					//今日合计
876
-					$('#jrtotalCount').html(jrtotalCount+'件');
842
+					$('#jrtotalCount').html(content.dayaccept+'件');
843
+					//今日共交办
844
+					$('#jrtotalCountJ').html(content.dayassign+'件');
877 845
 				})
878 846
 			}
879 847
 			//曝光台

+ 2 - 0
WebUI/CallCenterWeb.UI/Appeal/AddAppeal.html

@@ -271,7 +271,9 @@
271 271
 					var formData = new FormData();
272 272
 					for(var i = 0; i < Files.length; i++) {
273 273
 						formData.append('file' + i, Files[i]);
274
+						;
274 275
 					}
276
+					console.log(formData)
275 277
 					formData.append("token", $.cookie("token"));
276 278
 					$.ajax({
277 279
 						url: huayi.config.callcenter_url + "/WorkOrder/UploadFile",

+ 8 - 27
WebUI/CallCenterWeb.UI/Appeal/Lawsuit.html

@@ -91,6 +91,7 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
+				
94 95
 				background: rgba(0, 0, 0, 0.48);
95 96
 				z-index: 10004;
96 97
 				display: none;
@@ -544,7 +545,7 @@
544 545
 				$(".lyxz").addClass("cx");
545 546
 				$(".Ly_box").empty();
546 547
 				$(".down").attr("href", path);
547
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
548
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
548 549
 				$('.shade_k').css({
549 550
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
550 551
 					'left' : ($(window).width()-$('.shade_k').width())/2,
@@ -588,7 +589,6 @@
588 589
 					title: '工单详情',
589 590
 					area: ['87%', '80%'], //宽高
590 591
 				});
591
-				Close();
592 592
 			}
593 593
 			//编辑
594 594
 			function bj(str) {
@@ -598,11 +598,9 @@
598 598
 					title: '编辑工单',
599 599
 					area: ['96%', '80%'], //宽高
600 600
 				});
601
-				Close();
602 601
 			}
603 602
 			//删除
604 603
 			function move(str) {
605
-				Close();
606 604
 				layer.confirm('确定删除工单?', {
607 605
 					btn: ['是', '否'] //按钮
608 606
 				}, function() {
@@ -620,7 +618,6 @@
620 618
 			}
621 619
 			//提交
622 620
 			function tj(str) {
623
-				Close();
624 621
 				layer.confirm('确定要提交工单么?', {
625 622
 					btn: ['确定', '取消'] //按钮
626 623
 				}, function() {
@@ -640,7 +637,6 @@
640 637
 			}
641 638
 			//交办
642 639
 			function jb(str) {
643
-				Close();
644 640
 				layer.open({
645 641
 					type: 2,
646 642
 					content: "../CommonHtml/jiaoban.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -650,7 +646,6 @@
650 646
 			}
651 647
 			//领导批示
652 648
 			function lader(str) {
653
-				Close();
654 649
 				layer.open({
655 650
 					type: 2,
656 651
 					content: "../CommonHtml/Leader.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -660,7 +655,6 @@
660 655
 			}
661 656
 			//市长批示
662 657
 			function city(str) {
663
-				Close();
664 658
 				layer.open({
665 659
 					type: 2,
666 660
 					content: "../CommonHtml/shizhang.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -670,7 +664,6 @@
670 664
 			}
671 665
 			//办理
672 666
 			function bl(str) {
673
-				Close();
674 667
 				layer.open({
675 668
 					type: 2,
676 669
 					content: "../CommonHtml/banli.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -681,7 +674,6 @@
681 674
 			//督办
682 675
 
683 676
 			function Supervision(str) {
684
-				Close();
685 677
 				layer.open({
686 678
 					type: 2,
687 679
 					content: "../CommonHtml/Supervision_.html?wid=" + str + '&type=1', //iframe的url,no代表不显示滚动条
@@ -692,7 +684,6 @@
692 684
 
693 685
 			//督查
694 686
 			function Supervision_(str) {
695
-				Close();
696 687
 				layer.open({
697 688
 					type: 2,
698 689
 					content: "../CommonHtml/Supervision_.html?wid=" + str + '&type=2', //iframe的url,no代表不显示滚动条
@@ -702,7 +693,6 @@
702 693
 			}
703 694
 			//强制结案
704 695
 			function StrongLawsuit(str) {
705
-				Close();
706 696
 				layer.open({
707 697
 					type: 2,
708 698
 					content: "../CommonHtml/StrongLawsuit.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -712,7 +702,6 @@
712 702
 			}
713 703
 			//回退BackDtail
714 704
 			function BackDtail(str) {
715
-				Close();
716 705
 				layer.open({
717 706
 					type: 2,
718 707
 					content: "../CommonHtml/BackDatil.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -722,7 +711,6 @@
722 711
 			}
723 712
 			//查收
724 713
 			function cs(str) {
725
-				Close();
726 714
 				layer.confirm('确定要查收?', {
727 715
 					btn: ['是', '否'] //按钮
728 716
 				}, function() {
@@ -740,7 +728,6 @@
740 728
 			}
741 729
 			//收回
742 730
 			function sh(str) {
743
-				Close();
744 731
 				layer.confirm('确定要回收?', {
745 732
 					btn: ['是', '否'] //按钮
746 733
 				}, function() {
@@ -758,14 +745,12 @@
758 745
 			}
759 746
 			//强制回收
760 747
 			function recycles() {
761
-				Close();
762 748
 				layer.confirm('确定要强制退回吗?', {
763 749
 					btn: ['是', '否'] //按钮
764 750
 				});
765 751
 			}
766 752
 			//退回申请
767 753
 			function th(str) {
768
-				Close();
769 754
 				layer.open({
770 755
 					type: 2,
771 756
 					content: "../CommonHtml/tuihuisq.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -775,7 +760,6 @@
775 760
 			}
776 761
 			//审核退回申请
777 762
 			function shth(str) {
778
-				Close();
779 763
 				layer.open({
780 764
 					type: 2,
781 765
 					content: "../CommonHtml/shth.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -794,7 +778,6 @@
794 778
 			//			}
795 779
 			//申请延时
796 780
 			function ys(str) {
797
-				Close();
798 781
 				layer.open({
799 782
 					type: 2,
800 783
 					content: "../CommonHtml/Timesq.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -804,7 +787,6 @@
804 787
 			}
805 788
 			//审核申请延时
806 789
 			function shys(str) {
807
-				Close();
808 790
 				layer.open({
809 791
 					type: 2,
810 792
 					content: "../CommonHtml/shtime.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -814,7 +796,6 @@
814 796
 			}
815 797
 			//诉求回访
816 798
 			function hf(str) {
817
-				Close();
818 799
 				layer.open({
819 800
 					type: 2,
820 801
 					content: "../CommonHtml/Back.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -824,7 +805,6 @@
824 805
 			}
825 806
 			//重办工单
826 807
 			function cb(str) {
827
-				Close();
828 808
 				layer.open({
829 809
 					type: 2,
830 810
 					content: "../CommonHtml/Cb.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -834,7 +814,6 @@
834 814
 			}
835 815
 			//结案
836 816
 			function Lawsuit(str) {
837
-				Close();
838 817
 				layer.open({
839 818
 					type: 2,
840 819
 					content: "../CommonHtml/lawsuits.html?wid=" + str, //iframe的url,no代表不显示滚动条
@@ -978,10 +957,12 @@
978 957
 				}
979 958
 
980 959
 			};
981
-				function Close(){
982
-					$(".lyxz").removeClass("cx");
983
-				$('audio')[0].pause();
984
-				}
960
+            function Close() {
961
+                $(".lyxz").removeClass("cx");
962
+                if ($('audio').length > 0) {
963
+                    $('audio')[0].pause();
964
+                }
965
+            }
985 966
 		</script>
986 967
 	</body>
987 968
 

+ 0 - 80
WebUI/CallCenterWeb.UI/Appeal/gongdan.json

@@ -1,80 +0,0 @@
1
-{
2
-	"state": "success",
3
-	"message": "成功",
4
-	"rows": [
5
-		{
6
-			"a": "2017083199001",
7
-			"b": "1234",
8
-			"c": "",
9
-			"d": "1",
10
-			"e": "",
11
-			"f": ""
12
-			
13
-		}, {
14
-			"a": "2017083199001",
15
-			"b": "1234",
16
-			"c": "",
17
-			"d": "2",
18
-			"e": "",
19
-			"f": ""
20
-			
21
-		}, {
22
-			"a": "2017083199001",
23
-			"b": "1234",
24
-			"c": "",
25
-			"d": "3",
26
-			"e": "",
27
-			"f": ""
28
-			
29
-		}, {
30
-			"a": "2017083199001",
31
-			"b": "1234",
32
-			"c": "",
33
-			"d": "2",
34
-			"e": "",
35
-			"f": ""
36
-			
37
-		}, {
38
-			"a": "2017083199001",
39
-			"b": "1234",
40
-			"c": "",
41
-			"d": "4",
42
-			"e": "",
43
-			"f": ""
44
-			
45
-		}, {
46
-			"a": "2017083199001",
47
-			"b": "1234",
48
-			"c": "",
49
-			"d": "6",
50
-			"e": "",
51
-			"f": ""
52
-			
53
-		},{
54
-			"a": "2017083199001",
55
-			"b": "1234",
56
-			"c": "",
57
-			"d": "13512341234",
58
-			"e": "",
59
-			"f": ""
60
-			
61
-		},{
62
-			"a": "2017083199001",
63
-			"b": "1234",
64
-			"c": "",
65
-			"d": "13512341234",
66
-			"e": "",
67
-			"f": ""
68
-			
69
-		}, {
70
-			"a": "2017083199001",
71
-			"b": "1234",
72
-			"c": "",
73
-			"d": "13512341234",
74
-			"e": "",
75
-			"f": ""
76
-			
77
-		}
78
-	],
79
-	"total": 5
80
-}

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/LeaderDB.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -568,7 +567,7 @@
568 567
 				$(".lyxz").addClass("cx");
569 568
 				$(".Ly_box").empty();
570 569
 				$(".down").attr("href", path);
571
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
570
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
572 571
 				$('.shade_k').css({
573 572
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
574 573
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 1
WebUI/CallCenterWeb.UI/Business/LeaderDCL.html

@@ -91,7 +91,7 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
94
+				
95 95
 				background: rgba(0, 0, 0, 0.48);
96 96
 				z-index: 10004;
97 97
 				display: none;

+ 1 - 1
WebUI/CallCenterWeb.UI/Business/LeaderYJA.html

@@ -91,7 +91,7 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
94
+			
95 95
 				background: rgba(0, 0, 0, 0.48);
96 96
 				z-index: 10004;
97 97
 				display: none;

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/LeaderYJB.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -565,7 +564,7 @@
565 564
 				$(".lyxz").addClass("cx");
566 565
 				$(".Ly_box").empty();
567 566
 				$(".down").attr("href", path);
568
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
567
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
569 568
 				$('.shade_k').css({
570 569
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
571 570
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/LeaderYJC.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -565,7 +564,7 @@
565 564
 				$(".lyxz").addClass("cx");
566 565
 				$(".Ly_box").empty();
567 566
 				$(".down").attr("href", path);
568
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
567
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
569 568
 				$('.shade_k').css({
570 569
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
571 570
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 2 - 2
WebUI/CallCenterWeb.UI/Business/LeaderYTH.html

@@ -91,7 +91,7 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
94
+				
95 95
 				background: rgba(0, 0, 0, 0.48);
96 96
 				z-index: 10004;
97 97
 				display: none;
@@ -565,7 +565,7 @@
565 565
 				$(".lyxz").addClass("cx");
566 566
 				$(".Ly_box").empty();
567 567
 				$(".down").attr("href", path);
568
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
568
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
569 569
 				$('.shade_k').css({
570 570
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
571 571
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/LeaderYYS.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -565,7 +564,7 @@
565 564
 				$(".lyxz").addClass("cx");
566 565
 				$(".Ly_box").empty();
567 566
 				$(".down").attr("href", path);
568
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
567
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
569 568
 				$('.shade_k').css({
570 569
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
571 570
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/LeaderYZB.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -564,7 +563,7 @@
564 563
 				$(".lyxz").addClass("cx");
565 564
 				$(".Ly_box").empty();
566 565
 				$(".down").attr("href", path);
567
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
566
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
568 567
 				$('.shade_k').css({
569 568
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
570 569
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/WorkDC.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -563,7 +562,7 @@ if(wid){
563 562
 				$(".lyxz").addClass("cx");
564 563
 				$(".Ly_box").empty();
565 564
 				$(".down").attr("href", path);
566
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
565
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
567 566
 				$('.shade_k').css({
568 567
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
569 568
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/WorkDCCO.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -481,7 +480,7 @@
481 480
 				$(".lyxz").addClass("cx");
482 481
 				$(".Ly_box").empty();
483 482
 				$(".down").attr("href", path);
484
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
483
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
485 484
 				$('.shade_k').css({
486 485
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
487 486
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/WorkYBL.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -564,7 +563,7 @@
564 563
 				$(".lyxz").addClass("cx");
565 564
 				$(".Ly_box").empty();
566 565
 				$(".down").attr("href", path);
567
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
566
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
568 567
 				$('.shade_k').css({
569 568
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
570 569
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 2 - 2
WebUI/CallCenterWeb.UI/Business/WorkYCS.html

@@ -91,7 +91,7 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
94
+
95 95
 				background: rgba(0, 0, 0, 0.48);
96 96
 				z-index: 10004;
97 97
 				display: none;
@@ -564,7 +564,7 @@
564 564
 				$(".lyxz").addClass("cx");
565 565
 				$(".Ly_box").empty();
566 566
 				$(".down").attr("href", path);
567
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
567
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
568 568
 				$('.shade_k').css({
569 569
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
570 570
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 2 - 2
WebUI/CallCenterWeb.UI/Business/WorkYSQTH.html

@@ -91,7 +91,7 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
94
+			
95 95
 				background: rgba(0, 0, 0, 0.48);
96 96
 				z-index: 10004;
97 97
 				display: none;
@@ -564,7 +564,7 @@
564 564
 				$(".lyxz").addClass("cx");
565 565
 				$(".Ly_box").empty();
566 566
 				$(".down").attr("href", path);
567
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
567
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
568 568
 				$('.shade_k').css({
569 569
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
570 570
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/WorkYSQYS.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -564,7 +563,7 @@
564 563
 				$(".lyxz").addClass("cx");
565 564
 				$(".Ly_box").empty();
566 565
 				$(".down").attr("href", path);
567
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
566
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
568 567
 				$('.shade_k').css({
569 568
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
570 569
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/ZXDCL.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -572,7 +571,7 @@ if(wid){
572 571
 				$(".lyxz").addClass("cx");
573 572
 				$(".Ly_box").empty();
574 573
 				$(".down").attr("href", path);
575
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
574
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
576 575
 				$('.shade_k').css({
577 576
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
578 577
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 2 - 2
WebUI/CallCenterWeb.UI/Business/ZXDCLs.html

@@ -90,7 +90,7 @@
90 90
 				top: 0;
91 91
 				left: 0;
92 92
 				width: 100%;
93
-				height: 100%;
93
+				
94 94
 				background: rgba(0, 0, 0, 0.48);
95 95
 				z-index: 10004;
96 96
 				display: none;
@@ -560,7 +560,7 @@
560 560
 				$(".lyxz").addClass("cx");
561 561
 				$(".Ly_box").empty();
562 562
 				$(".down").attr("href", path);
563
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
563
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
564 564
 				$('.shade_k').css({
565 565
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
566 566
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 2 - 2
WebUI/CallCenterWeb.UI/Business/ZXYHF.html

@@ -91,7 +91,7 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
94
+				
95 95
 				background: rgba(0, 0, 0, 0.48);
96 96
 				z-index: 10004;
97 97
 				display: none;
@@ -576,7 +576,7 @@
576 576
 				$(".lyxz").addClass("cx");
577 577
 				$(".Ly_box").empty();
578 578
 				$(".down").attr("href", path);
579
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
579
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
580 580
 				$('.shade_k').css({
581 581
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
582 582
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 2 - 2
WebUI/CallCenterWeb.UI/Business/ZXYHFs.html

@@ -91,7 +91,7 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
94
+			
95 95
 				background: rgba(0, 0, 0, 0.48);
96 96
 				z-index: 10004;
97 97
 				display: none;
@@ -396,7 +396,7 @@
396 396
 				$(".lyxz").addClass("cx");
397 397
 				$(".Ly_box").empty();
398 398
 				$(".down").attr("href", path);
399
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
399
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
400 400
 				$('.shade_k').css({
401 401
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
402 402
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/ZXYTJ.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -576,7 +575,7 @@
576 575
 				$(".lyxz").addClass("cx");
577 576
 				$(".Ly_box").empty();
578 577
 				$(".down").attr("href", path);
579
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
578
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
580 579
 				$('.shade_k').css({
581 580
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
582 581
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 2 - 2
WebUI/CallCenterWeb.UI/Business/ZXYTJs.html

@@ -91,7 +91,7 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
94
+				
95 95
 				background: rgba(0, 0, 0, 0.48);
96 96
 				z-index: 10004;
97 97
 				display: none;
@@ -401,7 +401,7 @@
401 401
 				$(".lyxz").addClass("cx");
402 402
 				$(".Ly_box").empty();
403 403
 				$(".down").attr("href", path);
404
-				$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
404
+				$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
405 405
 				$('.shade_k').css({
406 406
 					'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
407 407
 					'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 2
WebUI/CallCenterWeb.UI/Business/notifiedList.html

@@ -91,7 +91,6 @@
91 91
 				top: 0;
92 92
 				left: 0;
93 93
 				width: 100%;
94
-				height: 100%;
95 94
 				background: rgba(0, 0, 0, 0.48);
96 95
 				z-index: 10004;
97 96
 				display: none;
@@ -489,7 +488,7 @@
489 488
 			$(".lyxz").addClass("cx");
490 489
 			$(".Ly_box").empty();
491 490
 			$(".down").attr("href", path);
492
-			$('<audio style="width: 100%;"class=" " src="' + path + '" loop="loop" controls="controls" ></audio>').appendTo(".Ly_box");
491
+			$('<audio style="width: 100%;"class=" " src="' + path + '"  controls="controls" ></audio>').appendTo(".Ly_box");
493 492
 			$('.shade_k').css({
494 493
 				'top' : $(document).scrollTop() + ($(window).height() - $('.shade_k').height() - 289)/2,
495 494
 				'left' : ($(window).width()-$('.shade_k').width())/2,

+ 1 - 0
WebUI/CallCenterWeb.UI/YeWu/keywordsStatistics.html

@@ -212,6 +212,7 @@
212 212
 				success: function (returnValue) {
213 213
 					//异步获取数据
214 214
 					var resultData1 = returnValue.data.KeyReport1;
215
+					console.log(resultData1);
215 216
 					$('#table1').bootstrapTable('load',resultData1); 
216 217
 					var resultData2 = returnValue.data.KeyReport2;
217 218
 					$('#table2').bootstrapTable('load',resultData2); 

+ 3 - 1
WebUI/CallCenterWeb.UI/css/Table/table1.css

@@ -176,7 +176,7 @@ input:focus {
176 176
             top: 0;
177 177
             left: 0;
178 178
             width: 100%;
179
-            height: 100%;
179
+           
180 180
             background: rgba(0, 0, 0, 0.48);
181 181
             z-index: 10004;
182 182
             display: none;
@@ -185,6 +185,8 @@ input:focus {
185 185
         .shade_k {
186 186
             z-index: 10005;
187 187
             width: 40%;
188
+            left: 30%;
189
+    position: absolute;
188 190
             margin: 10% auto;
189 191
             background-color: #fff;
190 192
             box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);