Compare commits

...

2 Commits

Author SHA1 Message Date
851673013@qq.com be36fc8631 Merge branch 'hi-ucs-dev' of http://15.2.21.221:3000/wuhongjian/hi-ucs into hi-ucs-dev 2022-06-28 10:40:56 +08:00
851673013@qq.com 3b4de725cd 能力运行监控img 2022-06-28 10:40:38 +08:00
21 changed files with 62 additions and 16 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1013 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1015 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1016 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1020 B

View File

@ -1,22 +1,68 @@
<!-- API请求分析 -->
<template>
<div class="wrapper">请求分析</div>
<div class="analysis-of-the-request">
<div class="analysis-of-the-request-title">API请求分析</div>
<div class="analysis-of-the-request-content">
<!-- 请求概况 -->
<div class="request-overview">
<div class="analysis-of-the-request-content-title">请求概况</div>
<div class="request-overview-content"></div>
</div>
<!-- 能力请求趋势 -->
<div>
<div></div>
<div></div>
</div>
<!-- 能力排行榜 -->
<div></div>
</div>
</div>
</template>
<script>
export default {
components: {},
props: {},
data() {
return {};
data () {
return {
requestOverviewData: [
{ name: '请求次数', tatol: '99999' },
{ name: '请求成功次数', tatol: '99999' },
{ name: '请求失败次数', tatol: '99999' },
{ name: '平均时延', tatol: '99999' }
] //
}
},
watch: {},
computed: {},
methods: {},
created() {},
mounted() {},
};
created () {},
mounted () {}
}
</script>
<style lang="scss" scoped>
.wrapper {
.analysis-of-the-request {
width: 100%;
background: #ffffff;
padding: 20px;
border-radius: 6px;
.analysis-of-the-request-title {
font-size: 18px;
line-height: 18px;
color: #333333;
margin-bottom: 15px;
} //API
.analysis-of-the-request-content-title {
font-size: 14px;
line-height: 14px;
color: #5a83ae;
margin-bottom: 20px;
font-weight: bold;
} //title
.request-overview {
margin-right: 80px;
.request-overview-content {
}
}
}
</style>

View File

@ -14,25 +14,25 @@
</template>
<script>
import AbnormalSituation from "./components/AbnormalSituation.vue";
import AnalysisOfTheRequest from "./components/AnalysisOfTheRequest.vue";
import CapabilityOperationMonitoringTime from "./components/CapabilityOperationMonitoringTime.vue";
import AbnormalSituation from './components/AbnormalSituation.vue'
import AnalysisOfTheRequest from './components/AnalysisOfTheRequest.vue'
import CapabilityOperationMonitoringTime from './components/CapabilityOperationMonitoringTime.vue'
export default {
components: {
AbnormalSituation,
AnalysisOfTheRequest,
CapabilityOperationMonitoringTime,
CapabilityOperationMonitoringTime
},
props: {},
data() {
return {};
data () {
return {}
},
watch: {},
computed: {},
methods: {},
created() {},
mounted() {},
};
created () {},
mounted () {}
}
</script>
<style lang="scss" scoped>
.wrapper {