|
@@ -481,11 +481,11 @@ app.controller('charts3Ctrl', ["$scope", "$rootScope", "$state", "$timeout", "$i
|
481
|
481
|
|
482
|
482
|
// // 获取近一个月建单总数数据
|
483
|
483
|
// // 开始
|
484
|
|
- $scope.incident_total_month = "";
|
|
484
|
+ $scope.incident_total = "";
|
485
|
485
|
|
486
|
486
|
function getYear_incident_total_month(time) {
|
487
|
487
|
api_hkreport.incidentreport(time, 'large_screen_year_incident_total').then(function (res) {
|
488
|
|
- $scope.incident_total_month = res.data[0].sum
|
|
488
|
+ $scope.incident_total = res.data[0].sum
|
489
|
489
|
})
|
490
|
490
|
}
|
491
|
491
|
getYear_incident_total_month({
|
|
@@ -497,11 +497,11 @@ app.controller('charts3Ctrl', ["$scope", "$rootScope", "$state", "$timeout", "$i
|
497
|
497
|
|
498
|
498
|
// // 获取近一年事件解决总时长数据
|
499
|
499
|
// // 开始
|
500
|
|
- $scope.incident_solve_time_year = "";
|
|
500
|
+ $scope.incident_solve_time = "";
|
501
|
501
|
|
502
|
502
|
function getIncident_solve_time(time) {
|
503
|
503
|
api_hkreport.incidentreport(time, 'large_screen_year_incident_solve_time').then(function (res) {
|
504
|
|
- $scope.incident_solve_time_year = res.data[0].hour || 0
|
|
504
|
+ $scope.incident_solve_time = res.data[0].hour || 0
|
505
|
505
|
})
|
506
|
506
|
}
|
507
|
507
|
getIncident_solve_time({
|
|
@@ -512,11 +512,11 @@ app.controller('charts3Ctrl', ["$scope", "$rootScope", "$state", "$timeout", "$i
|
512
|
512
|
|
513
|
513
|
// // 获取近一个月事件解决总时长数据
|
514
|
514
|
// // 开始
|
515
|
|
- $scope.incident_solve_time_month = "";
|
|
515
|
+ $scope.incident_solve_time = "";
|
516
|
516
|
|
517
|
517
|
function getIncident_solve_time_month(time) {
|
518
|
518
|
api_hkreport.incidentreport(time, 'large_screen_year_incident_solve_time').then(function (res) {
|
519
|
|
- $scope.incident_solve_time_month = res.data[0].hour || 0
|
|
519
|
+ $scope.incident_solve_time = res.data[0].hour || 0
|
520
|
520
|
})
|
521
|
521
|
}
|
522
|
522
|
getIncident_solve_time_month({
|
|
@@ -527,11 +527,11 @@ app.controller('charts3Ctrl', ["$scope", "$rootScope", "$state", "$timeout", "$i
|
527
|
527
|
|
528
|
528
|
// // 获取近一年已解决工单数据
|
529
|
529
|
// // 开始
|
530
|
|
- $scope.incident_solve_total_year = "";
|
|
530
|
+ $scope.incident_solve_total = "";
|
531
|
531
|
|
532
|
532
|
function getIncident_solve_total(time) {
|
533
|
533
|
api_hkreport.incidentreport(time, 'large_screen_year_incident_solve_total').then(function (res) {
|
534
|
|
- $scope.incident_solve_total_year = res.data[0].sum
|
|
534
|
+ $scope.incident_solve_total = res.data[0].sum
|
535
|
535
|
})
|
536
|
536
|
}
|
537
|
537
|
getIncident_solve_total({
|
|
@@ -543,11 +543,11 @@ app.controller('charts3Ctrl', ["$scope", "$rootScope", "$state", "$timeout", "$i
|
543
|
543
|
|
544
|
544
|
// // 获取近一个月已解决工单数据
|
545
|
545
|
// // 开始
|
546
|
|
- $scope.incident_solve_total_month = "";
|
|
546
|
+ $scope.incident_solve_total = "";
|
547
|
547
|
|
548
|
548
|
function getIncident_solve_total_month(time) {
|
549
|
549
|
api_hkreport.incidentreport(time, 'large_screen_year_incident_solve_total').then(function (res) {
|
550
|
|
- $scope.incident_solve_total_month = res.data[0].sum
|
|
550
|
+ $scope.incident_solve_total = res.data[0].sum
|
551
|
551
|
})
|
552
|
552
|
}
|
553
|
553
|
getIncident_solve_total_month({
|
|
@@ -559,11 +559,11 @@ app.controller('charts3Ctrl', ["$scope", "$rootScope", "$state", "$timeout", "$i
|
559
|
559
|
|
560
|
560
|
// // 获取近一年满意度数据
|
561
|
561
|
// // 开始
|
562
|
|
- $scope.incident_degree_year = "";
|
|
562
|
+ $scope.incident_degree = "";
|
563
|
563
|
|
564
|
564
|
function getIncident_degree(time) {
|
565
|
565
|
api_hkreport.incidentreport(time, 'large_screen_year_incident_degree').then(function (res) {
|
566
|
|
- $scope.incident_degree_year = res.data[0].degree || 0
|
|
566
|
+ $scope.incident_degree = res.data[0].degree || 0
|
567
|
567
|
})
|
568
|
568
|
}
|
569
|
569
|
getIncident_degree({
|
|
@@ -574,11 +574,11 @@ app.controller('charts3Ctrl', ["$scope", "$rootScope", "$state", "$timeout", "$i
|
574
|
574
|
|
575
|
575
|
// // 获取近一个月满意度数据
|
576
|
576
|
// // 开始
|
577
|
|
- $scope.incident_degree_month = "";
|
|
577
|
+ $scope.incident_degree = "";
|
578
|
578
|
|
579
|
579
|
function getIncident_degree_month(time) {
|
580
|
580
|
api_hkreport.incidentreport(time, 'large_screen_year_incident_degree').then(function (res) {
|
581
|
|
- $scope.incident_degree_month = res.data[0].degree || 0
|
|
581
|
+ $scope.incident_degree = res.data[0].degree || 0
|
582
|
582
|
})
|
583
|
583
|
}
|
584
|
584
|
getIncident_degree_month({
|
|
@@ -1071,14 +1071,10 @@ app.controller('charts3Ctrl', ["$scope", "$rootScope", "$state", "$timeout", "$i
|
1071
|
1071
|
$scope.incident_responseData = '';
|
1072
|
1072
|
$scope.incident_solveNowData = '';
|
1073
|
1073
|
$scope.incident_solvedData = '';
|
1074
|
|
- $scope.incident_total_month = '';
|
1075
|
|
- $scope.incident_solve_time_month = '';
|
1076
|
|
- $scope.incident_solve_total_month = '';
|
1077
|
|
- $scope.incident_degree_month = '';
|
1078
|
|
- $scope.incident_total_year = '';
|
1079
|
|
- $scope.incident_solve_time_year = '';
|
1080
|
|
- $scope.incident_solve_total_year = '';
|
1081
|
|
- $scope.incident_degree_year = '';
|
|
1074
|
+ $scope.incident_total = '';
|
|
1075
|
+ $scope.incident_solve_time = '';
|
|
1076
|
+ $scope.incident_solve_total = '';
|
|
1077
|
+ $scope.incident_degree = '';
|
1082
|
1078
|
// 实时信息
|
1083
|
1079
|
if($scope.slideBoxLeft3 == 0 || $scope.slideBoxLeft3 == 3){
|
1084
|
1080
|
map_time_area({
|