31 lines
531 B
Vue
31 lines
531 B
Vue
|
<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>
|