19 lines
295 B
Vue
19 lines
295 B
Vue
|
|
<template>
|
||
|
|
<Card title="隐患等级分析">
|
||
|
|
<div class="leftBottomBox">
|
||
|
|
111
|
||
|
|
</div>
|
||
|
|
</Card>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import Card from "@/components/card.vue";
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="scss">
|
||
|
|
.leftBottomBox{
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
</style>
|