| | |
| | | <template> |
| | | <el-row> |
| | | <el-col :span="8"> |
| | | <InspectionView></InspectionView> |
| | | </el-col> |
| | | <el-col :span="8"> |
| | | <ManagementView></ManagementView> |
| | | </el-col> |
| | | <el-col :span="8"> |
| | | <el-col :span="16"> |
| | | <el-scrollbar class="page-left-top"> |
| | | <VisualizationView></VisualizationView> |
| | | </el-scrollbar> |
| | | <el-scrollbar class="page-left-bottom"> |
| | | <InspectionView></InspectionView> |
| | | </el-scrollbar> |
| | | </el-col> |
| | | <el-col :span="8" class="page-right"> |
| | | <el-scrollbar height="var(--fy-body-height)"> |
| | | <ManagementView></ManagementView> |
| | | </el-scrollbar> |
| | | </el-col> |
| | | </el-row> |
| | | </template> |
| | |
| | | import VisualizationView from '@/views/visualization/VisualizationView.vue' |
| | | </script> |
| | | |
| | | <style scoped></style> |
| | | <style scoped> |
| | | .page-left-top { |
| | | height: calc(var(--fy-body-height) / 2); |
| | | background-color: aquamarine; |
| | | } |
| | | .page-left-bottom { |
| | | height: calc(var(--fy-body-height) / 2); |
| | | background-color: bisque; |
| | | } |
| | | |
| | | .page-right { |
| | | /* background-color: aliceblue; */ |
| | | } |
| | | </style> |