| | |
| | | <template> |
| | | <el-row> |
| | | <el-col :span="8">1</el-col> |
| | | <el-col :span="8">2</el-col> |
| | | <el-col :span="8">3</el-col> |
| | | </el-row> |
| | | <div class="wrapper"> |
| | | <div>现场巡查</div> |
| | | <WorkStream></WorkStream> |
| | | </div> |
| | | </template> |
| | | |
| | | <script setup></script> |
| | | <script setup> |
| | | /** |
| | | * 现场巡查实时跟踪 |
| | | */ |
| | | import TaskTrack from '@/views/inspection/TaskTrack.vue' |
| | | import WorkStream from '@/views/inspection/WorkStream.vue' |
| | | |
| | | <style scoped></style> |
| | | </script> |
| | | |
| | | <style scoped> |
| | | .wrapper { |
| | | /* height: calc(var(--fy-body-height) / 2); |
| | | background-color: burlywood; */ |
| | | } |
| | | </style> |