Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
apaas-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gzga-jzapi
apaas-ui
Commits
970f72b3
"src/pages/yygl.vue" did not exist on "295fd996031ece3d8d4130e47c21951d0a2ec13e"
Commit
970f72b3
authored
Aug 24, 2020
by
徐一鸣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
the-list组件样式修复
parent
944d2339
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
479 additions
and
409 deletions
+479
-409
src/components/e-charts/the-list.vue
src/components/e-charts/the-list.vue
+60
-52
src/pages/data-analysis/operation-overview.vue
src/pages/data-analysis/operation-overview.vue
+225
-195
src/pages/data-analysis/service-control.vue
src/pages/data-analysis/service-control.vue
+194
-162
No files found.
src/components/e-charts/the-list.vue
View file @
970f72b3
<
template
>
<
template
>
<div
class=
"top_list apaas_scroll"
@
mouseenter=
"mouseenter"
@
mouseleave=
"mouseleave"
>
<div
class=
"the_list apaas_scroll"
@
mouseenter=
"mouseenter"
@
mouseleave=
"mouseleave"
>
<ul>
<ul>
<li
class=
"item"
v-for=
"(item ,idx) in data"
:key=
"idx"
>
<li
class=
"item"
v-for=
"(item, idx) in data"
:key=
"idx"
>
<span
:class=
"idx==0?'one':idx==1?'two':idx==2?'three':'lis'"
class=
"pm"
>
{{
idx
+
1
}}
.
</span>
<span
<img
:src=
"item.img"
alt
/>
:class=
"
<p
class=
"name"
>
{{
item
.
name
}}
</p>
idx == 0 ? 'one' : idx == 1 ? 'two' : idx == 2 ? 'three' : 'lis'
<p
class=
"init"
>
{{
item
.
init
}}
</p>
"
<span
class=
"count"
>
{{
getCount
(
item
.
count
)
}}
次
</span>
class=
"pm"
>
{{
idx
+
1
}}
.
</span>
<img
:src=
"item.img"
/>
<p
class=
"text_clip"
>
<span
class=
"name"
>
{{
item
.
name
}}
</span><br>
<span
class=
"init"
>
{{
item
.
init
}}
</span>
</p>
<span
class=
"count"
>
{{
getCount
(
item
.
count
)
}}
次
</span>
</li>
</li>
</ul>
</ul>
</div>
</div>
...
@@ -18,15 +31,9 @@ export default {
...
@@ -18,15 +31,9 @@ export default {
data
:
{
data
:
{
type
:
Array
,
type
:
Array
,
default
()
{
default
()
{
return
[
return
[];
{
},
name
:
"
123
"
,
},
init
:
"
122222
"
,
count
:
1080
}
];
}
}
},
},
data
()
{
data
()
{
return
{};
return
{};
...
@@ -34,7 +41,7 @@ export default {
...
@@ -34,7 +41,7 @@ export default {
methods
:
{
methods
:
{
getCount
(
val
)
{
getCount
(
val
)
{
let
a
=
val
+
""
;
let
a
=
val
+
""
;
// console.log((val + "").length);
if
(
a
.
length
>
3
)
{
if
(
a
.
length
>
3
)
{
return
a
.
substr
(
0
,
1
)
+
"
,
"
+
a
.
substr
(
1
);
return
a
.
substr
(
0
,
1
)
+
"
,
"
+
a
.
substr
(
1
);
}
else
{
}
else
{
...
@@ -42,6 +49,7 @@ export default {
...
@@ -42,6 +49,7 @@ export default {
}
}
},
},
autoScroll
()
{
autoScroll
()
{
return
;
if
(
this
.
timer
)
{
if
(
this
.
timer
)
{
clearInterval
(
this
.
timer
);
clearInterval
(
this
.
timer
);
}
}
...
@@ -70,37 +78,36 @@ export default {
...
@@ -70,37 +78,36 @@ export default {
},
},
mouseleave
()
{
mouseleave
()
{
this
.
autoScroll
();
this
.
autoScroll
();
}
}
,
},
},
mounted
()
{
mounted
()
{
this
.
autoScroll
();
this
.
autoScroll
();
window
.
addEventListener
(
"
resize
"
,
()
=>
{
window
.
addEventListener
(
"
resize
"
,
()
=>
{
this
.
autoScroll
();
this
.
autoScroll
();
});
});
},
destroyed
()
{
if
(
this
.
timer
)
{
clearInterval
(
this
.
timer
);
}
}
},
};
};
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
.t
op
_list
{
.t
he
_list
{
overflow-x
:
hidden
;
overflow-x
:
hidden
;
overflow-y
:
auto
;
overflow-y
:
auto
;
}
}
li
{
list-style
:
none
;
}
.item
{
.item
{
height
:
50px
;
height
:
50px
;
position
:
relative
;
display
:
flex
;
justify-content
:
space-between
;
align-items
:
center
;
margin-bottom
:
10px
;
}
}
.item
img
{
.item
>
.pm
{
height
:
35px
;
flex-shrink
:
0
;
width
:
35px
;
border-radius
:
50%
;
margin-left
:
15px
;
margin-top
:
7px
;
}
.item
.pm
{
width
:
14px
;
width
:
14px
;
height
:
12px
;
height
:
12px
;
font-family
:
Arial-Black
;
font-family
:
Arial-Black
;
...
@@ -109,38 +116,37 @@ li {
...
@@ -109,38 +116,37 @@ li {
letter-spacing
:
0px
;
letter-spacing
:
0px
;
font-weight
:
bold
;
font-weight
:
bold
;
font-size
:
20px
;
font-size
:
20px
;
float
:
left
;
margin-top
:
12px
;
}
}
.one
{
.
item
>
.pm.
one
{
color
:
#d9ac64
;
color
:
#d9ac64
;
}
}
.two
{
.
item
>
.pm.
two
{
color
:
#c4c4c0
;
color
:
#c4c4c0
;
}
}
.three
{
.
item
>
.pm.
three
{
color
:
#ba6e40
;
color
:
#ba6e40
;
}
}
.lis
{
.
item
>
.pm.
lis
{
color
:
#333
;
color
:
#333
;
}
}
.item
p
{
.item
>
img
{
display
:
inline-block
;
flex-shrink
:
0
;
height
:
35px
;
width
:
35px
;
border-radius
:
50%
;
margin-left
:
15px
;
}
}
.item
.name
{
.item
>
p
{
position
:
absolute
;
flex-grow
:
1
;
left
:
85px
;
flex-shrink
:
1
;
margin-left
:
10px
;
}
}
.item
.init
{
.item
>
p
>
.init
{
position
:
absolute
;
top
:
25px
;
left
:
85px
;
color
:
#8890a7
;
color
:
#8890a7
;
margin-top
:
3px
;
}
}
.item
.count
{
.item
>
.count
{
float
:
right
;
flex-shrink
:
0
;
margin-right
:
25px
;
margin-top
:
15px
;
height
:
19px
;
height
:
19px
;
font-family
:
ArialMT
;
font-family
:
ArialMT
;
font-size
:
22px
;
font-size
:
22px
;
...
@@ -149,5 +155,7 @@ li {
...
@@ -149,5 +155,7 @@ li {
line-height
:
17px
;
line-height
:
17px
;
letter-spacing
:
0px
;
letter-spacing
:
0px
;
color
:
#515fe7
;
color
:
#515fe7
;
white-space
:
nowrap
;
margin-left
:
10px
;
}
}
</
style
>
</
style
>
src/pages/data-analysis/operation-overview.vue
View file @
970f72b3
...
@@ -2,21 +2,21 @@
...
@@ -2,21 +2,21 @@
<div>
<div>
<el-breadcrumb
separator=
"/"
class=
"bread_crumb1"
>
<el-breadcrumb
separator=
"/"
class=
"bread_crumb1"
>
<el-breadcrumb-item
:to=
"
{ path: '/data_analysis' }">
<el-breadcrumb-item
:to=
"
{ path: '/data_analysis' }">
{{
{{
$t
(
"
lang.data_analysis
"
)
}}
$t
(
"
lang.data_analysis
"
)
}}
</el-breadcrumb-item>
</el-breadcrumb-item>
<el-breadcrumb-item>
<el-breadcrumb-item>
{{
{{
$t
(
"
运行概况
"
)
}}
$t
(
"
运行概况
"
)
}}
</el-breadcrumb-item>
</el-breadcrumb-item>
</el-breadcrumb>
</el-breadcrumb>
<el-row>
<el-row>
<el-col
:span=
"6"
>
<el-col
:span=
"6"
>
<el-row>
<el-row>
<el-col
:span=
"24"
class=
"in_block"
>
<el-col
:span=
"24"
class=
"in_block"
>
<block-radius
:show_header=
"true"
title=
"组织用户概况"
class=
"block"
>
<block-radius
:show_header=
"true"
title=
"组织用户概况"
class=
"block"
>
<div
class=
"part"
>
<div
class=
"part"
>
<img
src=
"../../assets/imgs/yxgk_ic_zuzhiyh.png"
alt
/>
<img
src=
"../../assets/imgs/yxgk_ic_zuzhiyh.png"
alt
/>
<div
class=
"part_right_1"
>
<div
class=
"part_right_1"
>
...
@@ -48,7 +48,11 @@
...
@@ -48,7 +48,11 @@
</block-radius>
</block-radius>
</el-col>
</el-col>
<el-col
:span=
"24"
class=
"in_block"
>
<el-col
:span=
"24"
class=
"in_block"
>
<block-radius
:show_header=
"true"
title=
"服务状态统计"
class=
"block"
>
<block-radius
:show_header=
"true"
title=
"服务状态统计"
class=
"block"
>
<line-chart
:data=
"line_data"
:zzfw=
"true"
></line-chart>
<line-chart
:data=
"line_data"
:zzfw=
"true"
></line-chart>
</block-radius>
</block-radius>
</el-col>
</el-col>
...
@@ -57,12 +61,20 @@
...
@@ -57,12 +61,20 @@
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<el-row>
<el-row>
<el-col
:span=
"24"
class=
"in_block"
>
<el-col
:span=
"24"
class=
"in_block"
>
<block-radius
:show_header=
"true"
title=
"服务注册发布数量排名"
class=
"block"
>
<block-radius
:show_header=
"true"
title=
"服务注册发布数量排名"
class=
"block"
>
<bar-charttwo
:data=
"barData"
></bar-charttwo>
<bar-charttwo
:data=
"barData"
></bar-charttwo>
</block-radius>
</block-radius>
</el-col>
</el-col>
<el-col
:span=
"24"
class=
"in_block"
>
<el-col
:span=
"24"
class=
"in_block"
>
<block-radius
class=
"block"
:show_header=
"true"
title=
"应用构建数量排名"
>
<block-radius
class=
"block"
:show_header=
"true"
title=
"应用构建数量排名"
>
<BarChart
<BarChart
:data=
"bar_data_area"
:data=
"bar_data_area"
:colors=
"['#1034eb', '#4274f8']"
:colors=
"['#1034eb', '#4274f8']"
...
@@ -107,9 +119,12 @@
...
@@ -107,9 +119,12 @@
</el-col>
</el-col>
</el-row>
</el-row>
<el-row>
<el-row>
<el-col
:span=
'24'
class=
"in_block default"
>
<el-col
:span=
"24"
class=
"in_block default"
>
<block-radius
class=
"block"
>
<block-radius
class=
"block"
>
<img
:src=
"require('@/assets/imgs/data_img_default.gif')"
class=
"default_img"
/>
<img
:src=
"require('@/assets/imgs/data_img_default.gif')"
class=
"default_img"
/>
</block-radius>
</block-radius>
</el-col>
</el-col>
</el-row>
</el-row>
...
@@ -132,7 +147,7 @@ export default {
...
@@ -132,7 +147,7 @@ export default {
[
"
全程执法精细123
"
,
43.3
,
85.8
],
[
"
全程执法精细123
"
,
43.3
,
85.8
],
[
"
智能执法场所123
"
,
83.1
,
73.4
],
[
"
智能执法场所123
"
,
83.1
,
73.4
],
[
"
大数智能应用222
"
,
86.4
,
65.2
],
[
"
大数智能应用222
"
,
86.4
,
65.2
],
[
"
刑事案件智能1111
"
,
72.4
,
53.9
]
[
"
刑事案件智能1111
"
,
72.4
,
53.9
]
,
],
],
line_data
:
{
line_data
:
{
xAxisData
:
[
xAxisData
:
[
...
@@ -142,101 +157,101 @@ export default {
...
@@ -142,101 +157,101 @@ export default {
"
08-04
"
,
"
08-04
"
,
"
08-05
"
,
"
08-05
"
,
"
08-06
"
,
"
08-06
"
,
"
08-07
"
"
08-07
"
,
],
],
seriesData
:
[
seriesData
:
[
{
{
name
:
"
服务数量
"
,
name
:
"
服务数量
"
,
data
:
[
300
,
400
,
350
,
280
,
480
,
520
,
500
,
460
]
data
:
[
300
,
400
,
350
,
280
,
480
,
520
,
500
,
460
]
,
},
},
{
{
name
:
"
应用数量
"
,
name
:
"
应用数量
"
,
data
:
[
300
,
350
,
400
,
280
,
320
,
450
,
400
,
350
]
data
:
[
300
,
350
,
400
,
280
,
320
,
450
,
400
,
350
]
,
}
}
,
]
]
,
},
},
bar_data_area
:
{
bar_data_area
:
{
legendData
:
[
legendData
:
[
"
全程执法精细123
"
,
"
全程执法精细123
"
,
"
智能执法场所123
"
,
"
智能执法场所123
"
,
"
大数智能应用222
"
,
"
大数智能应用222
"
,
"
刑事案件智能1111
"
"
刑事案件智能1111
"
,
],
],
seriesData
:
[
50
,
63
,
48
,
58
]
seriesData
:
[
50
,
63
,
48
,
58
]
,
},
},
toplistData
:
[
toplistData
:
[
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
300
request_count
:
300
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
钉钉 V1.0
"
,
service_name
:
"
钉钉 V1.0
"
,
request_count
:
220
request_count
:
220
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
易智瑞 V11.3
"
,
service_name
:
"
易智瑞 V11.3
"
,
request_count
:
210
request_count
:
210
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
180
request_count
:
180
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
150
request_count
:
150
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
120
request_count
:
120
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
100
request_count
:
100
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
80
request_count
:
80
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
60
request_count
:
60
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
50
request_count
:
50
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
40
request_count
:
40
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
20
request_count
:
20
,
}
},
],
// 服务调用次数排名
],
// 服务调用次数排名
toplistTargetValue
:
400
,
// 服务调用次数排名 目标值
toplistTargetValue
:
400
,
// 服务调用次数排名 目标值
serveiceNum
:
""
,
serveiceNum
:
""
,
...
@@ -246,33 +261,38 @@ export default {
...
@@ -246,33 +261,38 @@ export default {
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
120
,
count
:
120
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
100
,
count
:
100
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
90
,
count
:
90
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
80
,
count
:
80
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
60
,
count
:
60
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
}
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
]
},
],
};
};
},
},
components
:
{
components
:
{
...
@@ -281,7 +301,7 @@ export default {
...
@@ -281,7 +301,7 @@ export default {
BarCharttwo
,
BarCharttwo
,
BarChart
,
BarChart
,
Toplist
,
Toplist
,
theList
theList
,
},
},
methods
:
{
methods
:
{
getData
()
{},
getData
()
{},
...
@@ -293,74 +313,74 @@ export default {
...
@@ -293,74 +313,74 @@ export default {
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
300
request_count
:
300
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
钉钉 V1.0
"
,
service_name
:
"
钉钉 V1.0
"
,
request_count
:
220
request_count
:
220
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
易智瑞 V11.3
"
,
service_name
:
"
易智瑞 V11.3
"
,
request_count
:
210
request_count
:
210
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
180
request_count
:
180
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
150
request_count
:
150
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
120
request_count
:
120
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
100
request_count
:
100
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
80
request_count
:
80
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
60
request_count
:
60
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
50
request_count
:
50
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
40
request_count
:
40
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
20
request_count
:
20
,
}
}
,
];
];
}
else
{
}
else
{
this
.
toplistData
=
[
this
.
toplistData
=
[
...
@@ -368,148 +388,158 @@ export default {
...
@@ -368,148 +388,158 @@ export default {
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
35
request_count
:
35
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
钉钉 V1.0
"
,
service_name
:
"
钉钉 V1.0
"
,
request_count
:
30
request_count
:
30
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
易智瑞 V11.3
"
,
service_name
:
"
易智瑞 V11.3
"
,
request_count
:
27
request_count
:
27
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
25
request_count
:
25
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
15
request_count
:
15
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
12
request_count
:
12
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
11
request_count
:
11
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
10
request_count
:
10
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
4
request_count
:
4
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
2
request_count
:
2
,
}
}
,
];
];
}
}
},
},
//部署次数排名
//部署次数排名
changeBsNumBtn
(
val
)
{
changeBsNumBtn
(
val
)
{
if
(
val
===
0
)
{
if
(
val
===
0
)
{
this
.
bsData
=
[
this
.
bsData
=
[
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
120
,
count
:
120
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
100
,
count
:
100
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
90
,
count
:
90
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
80
,
count
:
80
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
60
,
count
:
60
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
}
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
]
},
}
else
{
];
this
.
bsData
=
[
}
else
{
this
.
bsData
=
[
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
12
,
count
:
12
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
10
,
count
:
10
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
9
,
count
:
9
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
8
,
count
:
8
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
},
},
{
{
name
:
"
警综平台
"
,
name
:
"
警综平台
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
init
:
"
贵州省公安厅警务综合系统
"
,
count
:
6
,
count
:
6
,
img
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
img
:
}
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
]
},
}
];
}
}
}
},
},
};
};
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
...
...
src/pages/data-analysis/service-control.vue
View file @
970f72b3
...
@@ -2,26 +2,47 @@
...
@@ -2,26 +2,47 @@
<div
class=
"service-control"
>
<div
class=
"service-control"
>
<el-breadcrumb
separator=
"/"
class=
"bread_crumb1"
>
<el-breadcrumb
separator=
"/"
class=
"bread_crumb1"
>
<el-breadcrumb-item
:to=
"
{ path: '/data_analysis' }">
<el-breadcrumb-item
:to=
"
{ path: '/data_analysis' }">
{{
{{
$t
(
"
lang.data_analysis
"
)
}}
$t
(
"
lang.data_analysis
"
)
}}
</el-breadcrumb-item>
</el-breadcrumb-item>
<el-breadcrumb-item>
<el-breadcrumb-item>
{{
{{
$t
(
"
管控服务
"
)
}}
$t
(
"
管控服务
"
)
}}
</el-breadcrumb-item>
</el-breadcrumb-item>
</el-breadcrumb>
</el-breadcrumb>
<el-row>
<el-row>
<el-col
:span=
"6"
>
<el-col
:span=
"6"
>
<el-row>
<el-row>
<el-col
:span=
"24"
class=
"in_block"
>
<el-col
:span=
"24"
class=
"in_block"
>
<block-radius
:show_header=
"true"
title=
"管控分析概况"
class=
"block"
style=
"height:540px;"
>
<block-radius
:show_header=
"true"
title=
"管控分析概况"
class=
"block"
style=
"height:540px;"
>
<div
style=
"height:25px;"
></div>
<div
style=
"height:25px;"
></div>
<gk-circle
ref=
"left_1_r"
:data=
"gk_data[0]"
:is_word=
"true"
class=
"left_1_r"
></gk-circle>
<gk-circle
<gk-circle
ref=
"left_1_r"
:data=
"gk_data[1]"
:is_word=
"true"
class=
"left_1_r"
></gk-circle>
ref=
"left_1_r"
<gk-circle
ref=
"left_1_r"
:data=
"gk_data[2]"
:is_word=
"true"
class=
"left_1_r"
></gk-circle>
:data=
"gk_data[0]"
<gk-circle
ref=
"left_1_r"
:data=
"gk_data[3]"
:is_word=
"true"
class=
"left_1_r"
></gk-circle>
:is_word=
"true"
class=
"left_1_r"
></gk-circle>
<gk-circle
ref=
"left_1_r"
:data=
"gk_data[1]"
:is_word=
"true"
class=
"left_1_r"
></gk-circle>
<gk-circle
ref=
"left_1_r"
:data=
"gk_data[2]"
:is_word=
"true"
class=
"left_1_r"
></gk-circle>
<gk-circle
ref=
"left_1_r"
:data=
"gk_data[3]"
:is_word=
"true"
class=
"left_1_r"
></gk-circle>
</block-radius>
</block-radius>
</el-col>
</el-col>
</el-row>
</el-row>
...
@@ -29,14 +50,18 @@
...
@@ -29,14 +50,18 @@
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<el-row>
<el-row>
<el-col
:span=
"24"
class=
"in_block"
>
<el-col
:span=
"24"
class=
"in_block"
>
<block-radius
:show_header=
"true"
title=
"敏感信息服务统计"
class=
"block"
>
<block-radius
:show_header=
"true"
title=
"敏感信息服务统计"
class=
"block"
>
<el-row>
<el-row>
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<gkmultiple-circle
<gkmultiple-circle
class=
"block-radius-content"
class=
"block-radius-content"
:data=
"mult_data_state"
:data=
"mult_data_state"
:show_center_data=
"false"
:show_center_data=
"false"
:bar_width=
"10
"
:bar_width=
"10"
style=
"height:200px; margin-top:0"
style=
"height:200px; margin-top:0"
></gkmultiple-circle>
></gkmultiple-circle>
</el-col>
</el-col>
...
@@ -52,7 +77,11 @@
...
@@ -52,7 +77,11 @@
</block-radius>
</block-radius>
</el-col>
</el-col>
<el-col
:span=
"24"
class=
"in_block"
>
<el-col
:span=
"24"
class=
"in_block"
>
<block-radius
class=
"block"
:show_header=
"true"
title=
"应用构建数量排名"
>
<block-radius
class=
"block"
:show_header=
"true"
title=
"应用构建数量排名"
>
<doubleLine
:data=
"doubleData"
></doubleLine>
<doubleLine
:data=
"doubleData"
></doubleLine>
</block-radius>
</block-radius>
</el-col>
</el-col>
...
@@ -66,7 +95,7 @@
...
@@ -66,7 +95,7 @@
title=
"服务管控排名"
title=
"服务管控排名"
class=
"block"
class=
"block"
style=
"height:540px;"
style=
"height:540px;"
:buttons_arr=
"['完整性', '正确性',
'一致性',
'时效性']"
:buttons_arr=
"['完整性', '正确性',
'一致性',
'时效性']"
@
changeButton=
"changeServeiceGkBtn"
@
changeButton=
"changeServeiceGkBtn"
>
>
<toplist
<toplist
...
@@ -83,7 +112,10 @@
...
@@ -83,7 +112,10 @@
<el-row>
<el-row>
<el-col
:span=
"24"
class=
"in_block default"
>
<el-col
:span=
"24"
class=
"in_block default"
>
<block-radius
class=
"block"
>
<block-radius
class=
"block"
>
<img
:src=
"require('@/assets/imgs/data_img_default.gif')"
class=
"default_img"
/>
<img
:src=
"require('@/assets/imgs/data_img_default.gif')"
class=
"default_img"
/>
</block-radius>
</block-radius>
</el-col>
</el-col>
</el-row>
</el-row>
...
@@ -101,98 +133,98 @@ import Toplist from "@/components/e-charts/toplist";
...
@@ -101,98 +133,98 @@ import Toplist from "@/components/e-charts/toplist";
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{
toplistData
:[
toplistData
:
[
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
30
request_count
:
30
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
钉钉 V1.0
"
,
service_name
:
"
钉钉 V1.0
"
,
request_count
:
22
request_count
:
22
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
易智瑞 V11.3
"
,
service_name
:
"
易智瑞 V11.3
"
,
request_count
:
21
request_count
:
21
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
18
request_count
:
18
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
15
request_count
:
15
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
12
request_count
:
12
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
10
request_count
:
10
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
8
request_count
:
8
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
4
request_count
:
4
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
2
request_count
:
2
,
}
},
],
// 服务管控排名分析
],
// 服务管控排名分析
toplistTargetValue
:
40
,
// 服务管控排名分析 目标值
toplistTargetValue
:
40
,
// 服务管控排名分析 目标值
gk_data
:
[
gk_data
:
[
{
{
data
:
85
,
data
:
85
,
text
:
"
数据完整率
"
text
:
"
数据完整率
"
,
},
},
{
{
data
:
50
,
data
:
50
,
text
:
"
数据正确性
"
text
:
"
数据正确性
"
,
},
},
{
{
data
:
40
,
data
:
40
,
text
:
"
数据一致性
"
text
:
"
数据一致性
"
,
},
},
{
{
data
:
20
,
data
:
20
,
text
:
"
数据时效性
"
text
:
"
数据时效性
"
,
}
}
,
],
],
doubleData
:
{
doubleData
:
{
title
:
[
title
:
[
...
@@ -200,14 +232,14 @@ export default {
...
@@ -200,14 +232,14 @@ export default {
"
通知中心服务字符
"
,
"
通知中心服务字符
"
,
"
省送达服务
"
,
"
省送达服务
"
,
"
数据传输服务
"
,
"
数据传输服务
"
,
"
证据检查服务
"
"
证据检查服务
"
,
],
],
dataOne
:
[
100
,
300
,
256
,
288
,
176
,
327
],
dataOne
:
[
100
,
300
,
256
,
288
,
176
,
327
],
dataTwo
:
[
-
60
,
-
340
,
-
226
,
-
228
,
-
136
,
-
227
]
dataTwo
:
[
-
60
,
-
340
,
-
226
,
-
228
,
-
136
,
-
227
]
,
},
},
mult_data_state
:
[
mult_data_state
:
[
{
name
:
"
含敏感字段的服务
"
,
value
:
50
},
{
name
:
"
含敏感字段的服务
"
,
value
:
50
},
{
name
:
"
不含敏感字段的服务
"
,
value
:
41
}
{
name
:
"
不含敏感字段的服务
"
,
value
:
41
}
,
],
],
line_data
:
{
line_data
:
{
xAxisData
:
[
xAxisData
:
[
...
@@ -217,19 +249,19 @@ export default {
...
@@ -217,19 +249,19 @@ export default {
"
08-04
"
,
"
08-04
"
,
"
08-05
"
,
"
08-05
"
,
"
08-06
"
,
"
08-06
"
,
"
08-07
"
"
08-07
"
,
],
],
seriesData
:
[
seriesData
:
[
{
{
name
:
"
服务数量
"
,
name
:
"
服务数量
"
,
data
:
[
300
,
400
,
350
,
280
,
480
,
520
,
500
,
460
]
data
:
[
300
,
400
,
350
,
280
,
480
,
520
,
500
,
460
]
,
},
},
{
{
name
:
"
应用数量
"
,
name
:
"
应用数量
"
,
data
:
[
300
,
350
,
400
,
280
,
320
,
450
,
400
,
350
]
data
:
[
300
,
350
,
400
,
280
,
320
,
450
,
400
,
350
]
,
}
}
,
]
]
,
}
}
,
};
};
},
},
components
:
{
components
:
{
...
@@ -238,7 +270,7 @@ export default {
...
@@ -238,7 +270,7 @@ export default {
GkmultipleCircle
,
GkmultipleCircle
,
lineChart
,
lineChart
,
doubleLine
,
doubleLine
,
Toplist
Toplist
,
},
},
methods
:
{
methods
:
{
getData
()
{},
getData
()
{},
...
@@ -249,303 +281,303 @@ export default {
...
@@ -249,303 +281,303 @@ export default {
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
30
request_count
:
30
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
钉钉 V1.0
"
,
service_name
:
"
钉钉 V1.0
"
,
request_count
:
22
request_count
:
22
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
易智瑞 V11.3
"
,
service_name
:
"
易智瑞 V11.3
"
,
request_count
:
21
request_count
:
21
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
18
request_count
:
18
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
15
request_count
:
15
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
12
request_count
:
12
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
10
request_count
:
10
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
8
request_count
:
8
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
4
request_count
:
4
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
2
request_count
:
2
,
}
}
,
];
];
}
else
if
(
val
===
1
)
{
}
else
if
(
val
===
1
)
{
this
.
toplistData
=
[
this
.
toplistData
=
[
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
35
request_count
:
35
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
钉钉 V1.0
"
,
service_name
:
"
钉钉 V1.0
"
,
request_count
:
30
request_count
:
30
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
易智瑞 V11.3
"
,
service_name
:
"
易智瑞 V11.3
"
,
request_count
:
27
request_count
:
27
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
25
request_count
:
25
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
15
request_count
:
15
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
12
request_count
:
12
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
11
request_count
:
11
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
10
request_count
:
10
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
4
request_count
:
4
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
2
request_count
:
2
,
}
}
,
];
];
}
else
if
(
val
===
2
)
{
}
else
if
(
val
===
2
)
{
this
.
toplistData
=
[
this
.
toplistData
=
[
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
33
request_count
:
33
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
钉钉 V1.0
"
,
service_name
:
"
钉钉 V1.0
"
,
request_count
:
25
request_count
:
25
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
易智瑞 V11.3
"
,
service_name
:
"
易智瑞 V11.3
"
,
request_count
:
20
request_count
:
20
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
18
request_count
:
18
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
15
request_count
:
15
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
12
request_count
:
12
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
11
request_count
:
11
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
10
request_count
:
10
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
4
request_count
:
4
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
2
request_count
:
2
,
}
}
,
];
];
}
else
{
}
else
{
this
.
toplistData
=
[
this
.
toplistData
=
[
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
36
request_count
:
36
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
钉钉 V1.0
"
,
service_name
:
"
钉钉 V1.0
"
,
request_count
:
34
request_count
:
34
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
易智瑞 V11.3
"
,
service_name
:
"
易智瑞 V11.3
"
,
request_count
:
32
request_count
:
32
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
25
request_count
:
25
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
15
request_count
:
15
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
14
request_count
:
14
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
12
request_count
:
12
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
9
request_count
:
9
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
6
request_count
:
6
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
postgresql V11.1
"
,
service_name
:
"
postgresql V11.1
"
,
request_count
:
4
request_count
:
4
,
},
},
{
{
cover
:
cover
:
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
"
/apaas/static/docs/image/image/blob_206e8a81-6698-4946-9988-815d345f7f2f.blob
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
service_name
:
"
CAS单点登录 V1.0
"
,
request_count
:
2
request_count
:
2
,
}
}
,
];
];
}
}
}
}
,
}
}
,
};
};
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment