forked from drone/command-center-dashboard

chenyao
2025-04-21 2a45e8331f65e4fc6dee2fba898bfbeaa01b0f5c
src/components/DeviceJobDetails/DeviceJobDetails.vue
@@ -24,7 +24,7 @@
               </div>
               <div class="itemBoxRight">
                  <div class="itemTitle">关联算法:</div>
                  <div class="itemValue">{{ flystatus ? flystatus :'' }}</div>
                  <div class="itemValue">{{ flystatus ? flystatus : '' }}</div>
               </div>
            </div>
            <JobRelatedEvents v-if="props.wayLineJodInfoId" />
@@ -103,9 +103,8 @@
const achievementList = ref([])
const props = defineProps(['wayLineJodInfoId'])
const wayLineJodInfoId = computed(()=> props.wayLineJodInfoId)
provide('wayLineJodInfoId',wayLineJodInfoId)
const wayLineJodInfoId = computed(() => props.wayLineJodInfoId)
provide('wayLineJodInfoId', wayLineJodInfoId)
const getAchievement = () => {
   getJobInfoFiles({ jobInfoId: wayLineJodInfoId.value }).then(res => {
@@ -229,6 +228,9 @@
               margin-bottom: 24px;
            }
         }
         .itemBoxLeft > :last-child:nth-child(odd) {
            grid-column: 1 / -1;
         }
         .itemTitle {
            color: #fff;
         }