riku
2024-06-05 3653db5756ad6ae89eb573409a3b0fa9926175a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <div class="wrapper">
    <div>现场巡查</div>
    <TaskTrack></TaskTrack>
  </div>
</template>
 
<script setup>
import TaskTrack from '@/views/inspection/TaskTrack.vue'
</script>
 
<style scoped>
.wrapper {
  /* height: calc(var(--fy-body-height) / 2);
  background-color: burlywood; */
}
</style>