17 lines
288 B
Vue
17 lines
288 B
Vue
|
|
<template>
|
||
|
|
<!-- 质量检查一级页面 -->
|
||
|
|
<view class="qualityInspection"> </view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup>
|
||
|
|
import { ref } from 'vue'
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.safetyViolations {
|
||
|
|
height: 100%;
|
||
|
|
background-color: #f6f9ff;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
</style>
|