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