36 lines
576 B
Vue
36 lines
576 B
Vue
<template>
|
|
<div class="rbottom2-container">
|
|
<div class="title">{{ tLang('device', '检测结果占比') }}</div>
|
|
<div class="content">
|
|
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import bottomTable from './bottomTable.vue'
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.title {
|
|
width: 100%;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
font-size: 12px;
|
|
color: #cfcfcf;
|
|
|
|
}
|
|
|
|
.content {
|
|
width: 100%;
|
|
height: calc(100% - 20px);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.rbottom2-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|