| | |
| | | <template> |
| | | <div class="task-details-right-container"> |
| | | <img :src="kz1Img" alt="" class="titleImg" /> |
| | | <div class="titleImg"> |
| | | <img :src="droneImg" alt="" /> |
| | | </div> |
| | | |
| | | <div class="taskInfo"> |
| | | <div v-for="item in list" class="itemBox"> |
| | |
| | | </div> |
| | | </template> |
| | | <script setup> |
| | | import kz1Img from '@/assets/images/taskManagement/taskIntermediateContent/controlCenter.png' |
| | | import droneImg from '@/assets/images/taskManagement/taskIntermediateContent/droneImg.png' |
| | | import BaseControl from '@/views/TaskManage/TaskIntermediateContent/CurrentTaskDetails/ControlPanel/BaseControl.vue' |
| | | |
| | | const taskDetails = inject('taskDetails') |
| | |
| | | box-shadow: 0px 4px 72px 0px rgba(0, 0, 0, 0.25); |
| | | border-radius: 12px 12px 12px 12px; |
| | | border: 1px solid rgba(255, 255, 255, 0.99); |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: center; |
| | | img{ |
| | | width: 100px; |
| | | height: 68px; |
| | | } |
| | | } |
| | | |
| | | .taskInfo { |
| | |
| | | .itemBox { |
| | | display: flex; |
| | | font-family: Segoe UI, Segoe UI; |
| | | |
| | | font-size: 14px; |
| | | .itemName { |
| | | flex-shrink: 0; |
| | | font-weight: 400; |
| | | |
| | | color: #D3D3D3; |
| | | } |
| | | |
| | | .itemValue { |
| | | font-weight: bold; |
| | | font-size: 14px; |
| | | color: #ffffff; |
| | | line-height: 18px; |
| | | } |
| | | } |
| | | } |