add 质量检测统计和最近24小时数据

Este commit está contenido en:
lb
2023-08-04 14:54:30 +08:00
padre 33ff942fc6
commit 14a626b766
Se han modificado 2 ficheros con 58 adiciones y 0 borrados

Ver fichero

@@ -0,0 +1,29 @@
<!--
filename: index.vue
author: liubin
date: 2023-08-04 14:44:58
description:
-->
<template>
<div class="app-container">
<h1>Recent 24 hours</h1>
</div>
</template>
<script>
export default {
name: "QualityRecentHours",
components: {},
props: {},
data() {
return {}
},
computed: {},
methods: {},
}
</script>
<style scoped lang="scss">
</style>

Ver fichero

@@ -0,0 +1,29 @@
<!--
filename: index.vue
author: liubin
date: 2023-08-04 14:44:58
description:
-->
<template>
<div class="app-container">
<h1>Quality Statistics</h1>
</div>
</template>
<script>
export default {
name: "QualityStatistics",
components: {},
props: {},
data() {
return {}
},
computed: {},
methods: {},
}
</script>
<style scoped lang="scss">
</style>