1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <template>
| <div class="wrapper">
| <div>业务状态中控</div>
| <WorkStream></WorkStream>
| </div>
| </template>
|
| <script setup>
| /**
| * 现场巡查实时跟踪
| */
| import TaskTrack from '@/views/inspection/TaskTrack.vue'
| import WorkStream from '@/views/inspection/WorkStream.vue'
| </script>
|
| <style scoped>
| .wrapper {
| /* height: calc(var(--fy-body-height) / 2);
| background-color: burlywood; */
| }
| </style>
|
|