Explorar el Código

商丘大屏,APP修改

miaofuhao %!s(int64=5) %!d(string=hace) años
padre
commit
7fb8b58363

+ 0 - 1
WebChart/index.html

@@ -365,7 +365,6 @@
365 365
 								<ul>
366 366
 									<li class="clearfix">
367 367
 										<div class="line_wrap one_line line oneRight_line"></div>
368
-
369 368
 									</li>
370 369
 									<li class="clearfix">
371 370
 										<div class="line_wrap line two_line twoRight_line"></div>

BIN
WebChartBigNew2.zip


+ 3 - 1
WebChartBigNew2/index.html

@@ -193,7 +193,9 @@
193 193
 				</div>
194 194
 				<div class="box2_bot">
195 195
 					<div class="bot2_tit">业务类型统计</div>
196
-					<div class="bot2_con" id="part_1"></div>
196
+					<div class="bot2_con" id="part_1" style="display: none; width: 90%; height: 760px;"></div>
197
+					<div class="bot2_con" id="part_2" style="display: block; width: 90%; height: 760px;"></div>
198
+					<div class="bot2_con" id="part_3" style="display: none; width: 90%; height: 760px;"></div>
197 199
 					<div class="bot2_bot">
198 200
 						<ul>
199 201
 							<li>

+ 14 - 0
WebChartBigNew2/js/index.js

@@ -523,6 +523,7 @@ $('.key_top ul li').click(function() {
523 523
 });
524 524
 //Ajax1();
525 525
 function ajax1(){
526
+	
526 527
 	//  电话
527 528
 	$(".tel_zb").text("57.19%")
528 529
 	$(".tel_num").text("2152")
@@ -590,6 +591,10 @@ function ajax1(){
590 591
 		$(".key_top_2").css("width","0%");
591 592
 		$(".key_top_3").css("width","0%");
592 593
 	},10000)
594
+	$("#part_1").show();
595
+	$("#part_2").hide();
596
+	$("#part_3").hide();
597
+	part_1();
593 598
 	//关键词
594 599
 	$(".key_top1").text("350");
595 600
 	$(".key_top2").text("264");
@@ -713,6 +718,11 @@ function ajax2(){
713 718
 		$(".key_top_2").css("width","0%");
714 719
 		$(".key_top_3").css("width","0%");
715 720
 	},10000)
721
+	$("#part_1").hide();
722
+	$("#part_2").show();
723
+	$("#part_3").hide();
724
+	part_2();
725
+
716 726
 	//关键词
717 727
 	$(".key_top1").text("9783");
718 728
 	$(".key_top2").text("6758");
@@ -837,6 +847,10 @@ function ajax3(){
837 847
 		$(".key_top_2").css("width","0%");
838 848
 		$(".key_top_3").css("width","0%");
839 849
 	},10000)
850
+	$("#part_1").hide();
851
+	$("#part_2").hide();
852
+	$("#part_3").show();
853
+	part_3();
840 854
 	//关键词
841 855
 	$(".key_top1").text("107613");
842 856
 	$(".key_top2").text("66503");

+ 243 - 80
WebChartBigNew2/js/sourceChannel.js

@@ -1,84 +1,247 @@
1
-
2 1
 //part 1 //投诉类别月统计  对接完毕
3
-var part_1 = echarts.init(document.getElementById('part_1'));
4
-part_1.setOption({
5
-	title: {
6
-        text: ''
7
-    },
8
-    tooltip: {
9
-        trigger: 'axis'
10
-    },
11
-    legend: {
12
-        x: 'center',
13
-        data:['']
14
-    },
15
-    textStyle: {
16
-        fontSize: 36
17
-    },
18
-    radar: [
19
-        {
20
-            indicator: [
21
-                {text: '咨询',max: 99999},
22
-                {text: '投诉',max: 99999},
23
-                {text: '求助',max: 99999},
24
-                {text: '表扬',max: 99999},
25
-                {text: '建议',max: 99999},
26
-                {text: '其它',max: 99999}
27
-            ],
28
-            splitArea: {
29
-                areaStyle: {
30
-                    color: ['rgba(114, 172, 209, 0.1)',
31
-                    'rgba(114, 172, 209, 0.2)', 'rgba(114, 172, 209, 0.3)',
32
-                    'rgba(114, 172, 209, 0.4)', 'rgba(114, 172, 209, 0.5)',
33
-                    'rgba(114, 172, 209, 0.6)'],
34
-                    shadowColor: 'rgba(0, 0, 0, 0.3)',
35
-                    shadowBlur: 10
36
-                }
37
-            },
38
-            center: ['50%','50%'],
39
-            radius: 300
40
-        }
41
-    ],
42
-    series: [
43
-        {
44
-            type: 'radar',
45
-             tooltip: {
46
-                trigger: 'item'
47
-            },
48
-            itemStyle: {normal: {areaStyle: {type: 'default'}}},
49
-            data: [
50
-                {
51
-                    value: [65926,8611,428,1532,1776,736],
52
-                    name: '业务类型',
53
-                    areaStyle: {
54
-                        normal: {
55
-                            color: 'rgba(255, 255, 255, 0.0)'
56
-                        }
57
-                    }
58
-                }
59
-            ]
60
-        }
61
-    ]
62
-});
63 2
 
64
-//function partTwo() {
65
-//	part_1.setOption({
66
-//		series: {
67
-//			data:{
68
-//                  value: [80,80,80,80,80,80],
69
-//                  name: '某软件',
70
-//                  areaStyle: {
71
-//                      normal: {
72
-//                          color: 'rgba(255, 214, 103, 0.0)'
73
-//                      }
74
-//                  }
75
-//              }
76
-//		}
77
-//	});
78
-//}
3
+part_2();
4
+//
5
+function part_1() {
6
+	var part_1 = echarts.init(document.getElementById('part_1'));
7
+	part_1.setOption({
8
+		title: {
9
+			text: ''
10
+		},
11
+		tooltip: {
12
+			trigger: 'axis'
13
+		},
14
+		legend: {
15
+			x: 'center',
16
+			data: ['']
17
+		},
18
+		textStyle: {
19
+			fontSize: 36
20
+		},
21
+		radar: [{
22
+			indicator: [{
23
+					text: '咨询',
24
+					max: 9999
25
+				},
26
+				{
27
+					text: '投诉',
28
+					max: 9999
29
+				},
30
+				{
31
+					text: '求助',
32
+					max: 9999
33
+				},
34
+				{
35
+					text: '表扬',
36
+					max: 9999
37
+				},
38
+				{
39
+					text: '建议',
40
+					max: 9999
41
+				},
42
+				{
43
+					text: '其它',
44
+					max: 9999
45
+				}
46
+			],
47
+			splitArea: {
48
+				areaStyle: {
49
+					color: ['rgba(114, 172, 209, 0.1)',
50
+						'rgba(114, 172, 209, 0.2)', 'rgba(114, 172, 209, 0.3)',
51
+						'rgba(114, 172, 209, 0.4)', 'rgba(114, 172, 209, 0.5)',
52
+						'rgba(114, 172, 209, 0.6)'
53
+					],
54
+					shadowColor: 'rgba(0, 0, 0, 0.3)',
55
+					shadowBlur: 10
56
+				}
57
+			},
58
+			center: ['50%', '50%'],
59
+			radius: 300
60
+		}],
61
+		series: [{
62
+			type: 'radar',
63
+			tooltip: {
64
+				trigger: 'item'
65
+			},
66
+			itemStyle: {
67
+				normal: {
68
+					areaStyle: {
69
+						type: 'default'
70
+					}
71
+				}
72
+			},
73
+			data: [{
74
+				value: [2032, 604, 16, 83, 87, 25],
75
+				name: '业务类型',
76
+				areaStyle: {
77
+					normal: {
78
+						color: 'rgba(255, 255, 255, 0.0)'
79
+					}
80
+				}
81
+			}]
82
+		}]
83
+	});
84
+
85
+}
79 86
 
87
+function part_2() {
88
+	var part_2 = echarts.init(document.getElementById('part_2'));
89
+	part_2.setOption({
90
+		title: {
91
+			text: ''
92
+		},
93
+		tooltip: {
94
+			trigger: 'axis'
95
+		},
96
+		legend: {
97
+			x: 'center',
98
+			data: ['']
99
+		},
100
+		textStyle: {
101
+			fontSize: 36
102
+		},
103
+		radar: [{
104
+			indicator: [{
105
+					text: '咨询',
106
+					max: 99999
107
+				},
108
+				{
109
+					text: '投诉',
110
+					max: 99999
111
+				},
112
+				{
113
+					text: '求助',
114
+					max: 99999
115
+				},
116
+				{
117
+					text: '表扬',
118
+					max: 99999
119
+				},
120
+				{
121
+					text: '建议',
122
+					max: 99999
123
+				},
124
+				{
125
+					text: '其它',
126
+					max: 99999
127
+				}
128
+			],
129
+			splitArea: {
130
+				areaStyle: {
131
+					color: ['rgba(114, 172, 209, 0.1)',
132
+						'rgba(114, 172, 209, 0.2)', 'rgba(114, 172, 209, 0.3)',
133
+						'rgba(114, 172, 209, 0.4)', 'rgba(114, 172, 209, 0.5)',
134
+						'rgba(114, 172, 209, 0.6)'
135
+					],
136
+					shadowColor: 'rgba(0, 0, 0, 0.3)',
137
+					shadowBlur: 10
138
+				}
139
+			},
140
+			center: ['50%', '50%'],
141
+			radius: 300
142
+		}],
143
+		series: [{
144
+			type: 'radar',
145
+			tooltip: {
146
+				trigger: 'item'
147
+			},
148
+			itemStyle: {
149
+				normal: {
150
+					areaStyle: {
151
+						type: 'default'
152
+					}
153
+				}
154
+			},
155
+			data: [{
156
+				value: [65926, 8611, 428, 1532, 1776, 736],
157
+				name: '业务类型',
158
+				areaStyle: {
159
+					normal: {
160
+						color: 'rgba(255, 255, 255, 0.0)'
161
+					}
162
+				}
163
+			}]
164
+		}]
165
+	});
166
+}
80 167
 
81
-//Ajax1();
82
-//function Ajax1() {
83
-//	partTwo()
84
-//}
168
+function part_3() {
169
+	var part_3 = echarts.init(document.getElementById('part_3'));
170
+	part_3.setOption({
171
+		title: {
172
+			text: ''
173
+		},
174
+		tooltip: {
175
+			trigger: 'axis'
176
+		},
177
+		legend: {
178
+			x: 'center',
179
+			data: ['']
180
+		},
181
+		textStyle: {
182
+			fontSize: 36
183
+		},
184
+		radar: [{
185
+			indicator: [{
186
+					text: '咨询',
187
+					max: 999999
188
+				},
189
+				{
190
+					text: '投诉',
191
+					max: 999999
192
+				},
193
+				{
194
+					text: '求助',
195
+					max: 999999
196
+				},
197
+				{
198
+					text: '表扬',
199
+					max: 999999
200
+				},
201
+				{
202
+					text: '建议',
203
+					max: 999999
204
+				},
205
+				{
206
+					text: '其它',
207
+					max: 999999
208
+				}
209
+			],
210
+			splitArea: {
211
+				areaStyle: {
212
+					color: ['rgba(114, 172, 209, 0.1)',
213
+						'rgba(114, 172, 209, 0.2)', 'rgba(114, 172, 209, 0.3)',
214
+						'rgba(114, 172, 209, 0.4)', 'rgba(114, 172, 209, 0.5)',
215
+						'rgba(114, 172, 209, 0.6)'
216
+					],
217
+					shadowColor: 'rgba(0, 0, 0, 0.3)',
218
+					shadowBlur: 10
219
+				}
220
+			},
221
+			center: ['50%', '50%'],
222
+			radius: 300
223
+		}],
224
+		series: [{
225
+			type: 'radar',
226
+			tooltip: {
227
+				trigger: 'item'
228
+			},
229
+			itemStyle: {
230
+				normal: {
231
+					areaStyle: {
232
+						type: 'default'
233
+					}
234
+				}
235
+			},
236
+			data: [{
237
+				value: [725186, 94721, 931, 16852, 27236, 5632],
238
+				name: '业务类型',
239
+				areaStyle: {
240
+					normal: {
241
+						color: 'rgba(255, 255, 255, 0.0)'
242
+					}
243
+				}
244
+			}]
245
+		}]
246
+	});
247
+}

+ 4 - 4
WebSite/css/indexs.css

@@ -2338,9 +2338,9 @@ position: relative;
2338 2338
 
2339 2339
 
2340 2340
 @media only screen and (max-width: 1920px) {
2341
-	.Content {
2341
+	/*.Content {
2342 2342
 		min-height: 549px;/*1920屏幕下*/
2343
-	}
2343
+	}*/
2344 2344
 	.bannerContainer {
2345 2345
 		height: 136px;
2346 2346
 	}
@@ -2349,9 +2349,9 @@ position: relative;
2349 2349
 	.Content {
2350 2350
 		min-height: 220px;/*1366屏幕下*/
2351 2351
 	}
2352
-	.bannerContainer {
2352
+	/*.bannerContainer {
2353 2353
 		height: 136px;
2354
-	}
2354
+	}*/
2355 2355
 }
2356 2356
 /*侧栏*/
2357 2357
 .elevator {

+ 3 - 1
WebSite/index.html

@@ -287,7 +287,9 @@
287 287
                     </div>
288 288
 
289 289
                     <div class="img-boundary">
290
-                        <img src="img/img-boundary.png" alt="图片" width="100%" height="100%" />
290
+                    	<a href="http://sq.hnzwfw.gov.cn/?webid=16&areacode=411400000000" target="_blank">
291
+                        	<img src="img/img-boundary.png" alt="图片" width="100%" height="100%" />
292
+                        </a>
291 293
                     </div>
292 294
 
293 295
                     <!--3政策法规 曝光台-->

+ 0 - 1
WebSite/js/common/huayi.http.js

@@ -1,7 +1,6 @@
1 1
 var helper = {};
2 2
 $(document).ready(function() {
3 3
     helper.init.loadcomment();
4
- 	helper.init.Monochrome();
5 4
 })
6 5
 
7 6
 helper.http = {

+ 2 - 5
WebUI/CallCenterWeb.UI/Script/Common/huayi.config.js

@@ -2,12 +2,9 @@
2 2
     var huayi = {};
3 3
 }
4 4
 huayi.config = {
5
-	//callcenter_url: "http://121.196.219.217:8002/",//生产环境
6
-	callcenter_url: "http://139.224.236.21:4025/",//生产环境
7
-    //callcenter_url: "http://192.168.4.18:4010/",//生产环境
8
-    //callcenter_url: "http://192.168.5.7:8011/",//生产环境
5
+	callcenter_url: "http://192.168.8.13:1001/",//生产环境
6
+	//callcenter_url: "http://139.224.236.21:4025/",//生产环境
9 7
     //callcenter_url: "http://12345.shangqiu.gov.cn:8819/",//生产环境
10
-    //callcenter_url: "http://localhost:63660/",//测试环境
11 8
     socket_ip: "192.168.5.7",//ip
12 9
     socket_port: "8081",//端口
13 10
     menuworktime: 30000,//菜单工单数量刷新间隔

+ 5 - 5
WebUI/CallCenterWeb.UI/login.html

@@ -228,11 +228,11 @@
228 228
 					</div>
229 229
 				<!--</div>-->
230 230
 					<div class="service" >
231
-						<!--row clearfix--> 
232
-					<!--<div class="col-sm-7">-->
233
-						<p style="color: #313c58; font-size: 12px;text-align: center;"></p>
234
-					<!--</div>-->
235
-				</div>
231
+							<!--row clearfix--> 
232
+						<!--<div class="col-sm-7">-->
233
+							<p style="color: #313c58; font-size: 12px;text-align: center;"></p>
234
+						<!--</div>-->
235
+					</div>
236 236
 					
237 237
 				</div>
238 238
 				

+ 0 - 2
商丘WebAPP/Dispatch/Work-ljbanli.html

@@ -303,8 +303,6 @@
303 303
 						plus.nativeUI.toast('请选择处理结果');
304 304
 					} else if(!$("#result").val()) {
305 305
 						plus.nativeUI.toast('输入办理结果');
306
-					} else if(!Str) {
307
-						plus.nativeUI.toast('请上传图片');
308 306
 					} else{
309 307
 						mui.ajax(huayi.config.callcenter_url + 'WorkOrder/DealWorkOrder', {
310 308
 							data: {

+ 0 - 2
商丘WebAPP/MenuSecond/Work-ljbanli.html

@@ -303,8 +303,6 @@
303 303
 						plus.nativeUI.toast('请选择处理结果');
304 304
 					} else if(!$("#result").val()) {
305 305
 						plus.nativeUI.toast('输入办理结果');
306
-					} else if(!Str) {
307
-						plus.nativeUI.toast('请上传图片');
308 306
 					} else{
309 307
 						mui.ajax(huayi.config.callcenter_url + 'WorkOrder/FeedBackWorkOrder', {
310 308
 							data: {

+ 11 - 1
商丘WebAPP/js/huayi.config.js

@@ -39,4 +39,14 @@ huayi.config = {
39 39
             "<a class='xg' onclick='withdraw(data)' title='撤单'>撤单</a>" //撤单
40 40
 	]
41 41
 
42
-};
42
+};
43
+// (function(){
44
+//     	$("html").css({
45
+// 			"-webkit-filter":"grayscale(100%)",
46
+// 			"-moz-filter":"grayscale(100%)",
47
+// 			"-ms-filter":"grayscale(100%)",
48
+// 			"-o-filter":"grayscale(100%)",
49
+// 			"filter":"progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)",
50
+// 			"_filter":"none"
51
+// 		});
52
+// })()

+ 3 - 2
商丘WebAPP/manifest.json

@@ -3,7 +3,7 @@
3 3
     "id" : "io.dcloud.H5E9497099", /*应用的标识,创建应用时自动生成,勿手动修改*/
4 4
     "name" : "12345马上办便民服务热线", /*应用名称,程序桌面图标名称*/
5 5
     "version" : {
6
-        "name" : "1.9.0", /*应用版本名称*/
6
+        "name" : "1.9.2", /*应用版本名称*/
7 7
         "code" : "83"
8 8
     },
9 9
     "description" : "", /*应用描述信息*/
@@ -2262,5 +2262,6 @@
2262 2262
         }
2263 2263
     },
2264 2264
     "unpackage" : [ "README.md" ],
2265
-    "fullscreen" : false
2265
+    "fullscreen" : false,
2266
+    "screenOrientation" : [ "portrait-primary", "portrait-secondary" ]
2266 2267
 }