| | |
| | | <!--时间 天气--> |
| | | <common-weather></common-weather> |
| | | <!-- 机巢数据 --> |
| | | <MachineData></MachineData> |
| | | <MachineData></MachineData> |
| | | <div class="do-return" @click="goBack"> |
| | | <img src="@/assets/images/signMachineNest/return.png" alt="" /> |
| | | </div> |
| | | <!--巡检任务详情--> |
| | | <InspectionRaskDetails></InspectionRaskDetails> |
| | | </div> |
| | |
| | | import CommonWeather from '@/components/CommonWeather.vue'; |
| | | import MachineData from './MachineData.vue'; |
| | | import InspectionRaskDetails from './InspectionRaskDetails.vue'; |
| | | import { useRouter } from 'vue-router'; |
| | | |
| | | const router = useRouter(); |
| | | |
| | | const goBack = () => { |
| | | router.push('/index'); |
| | | }; |
| | | </script> |
| | | |
| | | <style scoped lang="scss"> |
| | |
| | | position: absolute; |
| | | top: 88px; |
| | | color: #e7f5ff; |
| | | .do-return { |
| | | position: absolute; |
| | | top: 56px; |
| | | right: -50px; |
| | | cursor: pointer; |
| | | img { |
| | | width: 40px; |
| | | height: 40px; |
| | | } |
| | | } |
| | | } |
| | | </style> |