index.js
4.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import filter from '@/utils/filter.js'
class data extends filter {
constructor() {
super()
}
columns () {
return [
{
prop: "recType",
label: "行政区",
width: '90'
},
{
label: '增量数据接入情况',
children: [
{
prop: 'busniessCount',
label: '本期接入业务量(笔)',
},
{
prop: 'receiveCount',
label: '本期接入业务量(次)',
},
{
prop: 'recordTotal',
label: '本期登簿日志反映出的登簿量(条)',
},
{
label: '本期接入质量评价',
children: [
{
prop: 'noReportLog',
label: '未上报登簿日志县区数(个)',
},
{
prop: 'noReportArea',
label: '未上报数据县区数(个)',
},
{
label: '本期未成功接入登簿量及在登簿日志量中的占比',
width: '120',
children: [
{
prop: 'failReportCount',
label: '未成功接入登簿量(条)',
},
{
prop: 'failReportRatio',
label: '占比',
render: (h, scope) => {
return (
<span>{(scope.row.failReportRatio * 100).toFixed(2)}%</span>
);
},
}
]
},
{
label: '分时段接入登簿量及与本期接入登簿量的占比',
children: [
{
label: '24小时内接入登簿量(占比%)',
width: '120',
children: [
{
prop: 'failReportCount24h',
},
{
prop: 'failReportRatio24h',
render: (h, scope) => {
return (
<span>{(scope.row.failReportRatio24h * 100).toFixed(2)}%</span>
);
},
}
]
},
{
label: '48小时内接入登簿量(占比%)',
width: '120',
children: [
{
prop: 'failReportCount24To48h',
},
{
prop: 'failReportRatio24To48h',
render: (h, scope) => {
return (
<div>
<span>{(scope.row.failReportRatio24To48h * 100).toFixed(2)}</span>
%
</div>
);
},
}
]
},
{
label: '超过48小时接入登簿量(占比%)',
width: '120',
children: [
{
prop: 'failReportCount48h',
},
{
prop: 'failReportRatio48h',
render: (h, scope) => {
return (
<span>{(scope.row.failReportRatio48h * 100).toFixed(2)}%</span>
);
},
}
]
}
]
},
{
prop: 'xxx',
label: '网络环境异常情况',
},
{
prop: 'xxx',
label: '非登簿环节接入的区县数',
},
{
prop: 'xxx',
label: '非自动方式接入的区县数',
},
{
prop: 'rate',
label: '综合评分'
}
]
}
]
}
]
}
}
export default new data()