Compare commits
No commits in common. "be36fc8631822db441f7ca3be779f37912c96d0d" and "1e4db8a594fd5677aadf8bea9c8059bd939843e1" have entirely different histories.
be36fc8631
...
1e4db8a594
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1013 B |
Before Width: | Height: | Size: 1015 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1016 B |
Before Width: | Height: | Size: 1020 B |
|
@ -1,68 +1,22 @@
|
||||||
<!-- API请求分析 -->
|
|
||||||
<template>
|
<template>
|
||||||
<div class="analysis-of-the-request">
|
<div class="wrapper">请求分析</div>
|
||||||
<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>
|
||||||
.analysis-of-the-request {
|
.wrapper {
|
||||||
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 {
|
||||||
|
|