Compare commits
2 Commits
1e4db8a594
...
be36fc8631
Author | SHA1 | Date |
---|---|---|
851673013@qq.com | be36fc8631 | |
851673013@qq.com | 3b4de725cd |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1013 B |
After Width: | Height: | Size: 1015 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1016 B |
After Width: | Height: | Size: 1020 B |
|
@ -1,22 +1,68 @@
|
||||||
|
<!-- API请求分析 -->
|
||||||
<template>
|
<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>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
components: {},
|
components: {},
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data () {
|
||||||
return {};
|
return {
|
||||||
|
requestOverviewData: [
|
||||||
|
{ name: '请求次数', tatol: '99999' },
|
||||||
|
{ name: '请求成功次数', tatol: '99999' },
|
||||||
|
{ name: '请求失败次数', tatol: '99999' },
|
||||||
|
{ name: '平均时延', tatol: '99999' }
|
||||||
|
] // 请求概况初始化数据
|
||||||
|
}
|
||||||
},
|
},
|
||||||
watch: {},
|
watch: {},
|
||||||
computed: {},
|
computed: {},
|
||||||
methods: {},
|
methods: {},
|
||||||
created() {},
|
created () {},
|
||||||
mounted() {},
|
mounted () {}
|
||||||
};
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<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>
|
</style>
|
||||||
|
|
|
@ -14,25 +14,25 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AbnormalSituation from "./components/AbnormalSituation.vue";
|
import AbnormalSituation from './components/AbnormalSituation.vue'
|
||||||
import AnalysisOfTheRequest from "./components/AnalysisOfTheRequest.vue";
|
import AnalysisOfTheRequest from './components/AnalysisOfTheRequest.vue'
|
||||||
import CapabilityOperationMonitoringTime from "./components/CapabilityOperationMonitoringTime.vue";
|
import CapabilityOperationMonitoringTime from './components/CapabilityOperationMonitoringTime.vue'
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
AbnormalSituation,
|
AbnormalSituation,
|
||||||
AnalysisOfTheRequest,
|
AnalysisOfTheRequest,
|
||||||
CapabilityOperationMonitoringTime,
|
CapabilityOperationMonitoringTime
|
||||||
},
|
},
|
||||||
props: {},
|
props: {},
|
||||||
data() {
|
data () {
|
||||||
return {};
|
return {}
|
||||||
},
|
},
|
||||||
watch: {},
|
watch: {},
|
||||||
computed: {},
|
computed: {},
|
||||||
methods: {},
|
methods: {},
|
||||||
created() {},
|
created () {},
|
||||||
mounted() {},
|
mounted () {}
|
||||||
};
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.wrapper {
|
.wrapper {
|
||||||
|
|