add SmallTitle & 质量在线检测数据

This commit is contained in:
2022-08-17 10:23:34 +08:00
parent 8943eb56b3
commit 56ab0220e2
2 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<template>
<div class="quality-inspection-current base-container">
<small-title>hhh</small-title>
</div>
</template>
<script>
import BaseTable from '@/components/base-table'
import SmallTitle from '@/components/small-title'
const tableConfigStatic = {}
const tableConfigDynamic = {}
export default {
name: 'QualityInspectionCurrent',
components: { BaseTable, SmallTitle },
data() {
return {}
},
methods: {}
}
</script>
<style scoped>
.base-container {
min-height: 60vh;
background: #fff;
padding: 8px;
}
</style>