From 5808f76456ca0d40de5074f132b73a5a488e3e13 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Tue, 09 Dec 2025 09:12:03 +0800
Subject: [PATCH] Merge branch 'refs/heads/feature/v9.0/9.0.1' into test

---
 src/views/job/components/DeviceJobDetails.vue |   32 +++++++++++++++++---------------
 1 files changed, 17 insertions(+), 15 deletions(-)

diff --git a/src/views/job/components/DeviceJobDetails.vue b/src/views/job/components/DeviceJobDetails.vue
index eb0e325..a1b987c 100644
--- a/src/views/job/components/DeviceJobDetails.vue
+++ b/src/views/job/components/DeviceJobDetails.vue
@@ -229,22 +229,24 @@
       if (item.name === '自定义识别区') {
         item.value = res.data.data.enable_custom_area ? '是' : '否'
       }
-      getJobsAllFiles({
-        wayLineJobId: detailsData.value.way_lines.map(item => item.job_id).join(','),
-        resultTypes: [0, 1, 2, 4, 5],
-        orderByCreateTime: true,
-      }).then(result => {
-        if (result.data.code !== 200) return
-        achievementList.value = res.data.data.records.map(i => ({
-          ...i,
-          checked: false,
-          smallUrl: i.resultType === 4 ? getzsSmallImg(i.link) : getSmallImg(i.link),
-          showUrl: i.resultType === 4 ? getzsShowImg(i.link) : getShowImg(i.link),
-        }))
-        total.value = res.data.data.total
 
-        yuanImages.value = res.data.data.records.filter(item => item.resultType !== 1)
-      })
+    })
+
+    getJobsAllFiles({
+      wayLineJobId: detailsData.value.way_lines.map(item => item.job_id).join(','),
+      resultTypes: [0, 1, 2, 4, 5],
+      orderByCreateTime: true,
+    }).then(res => {
+      if (res.data.code !== 200) return
+      achievementList.value = res.data.data.records.map(i => ({
+        ...i,
+        checked: false,
+        smallUrl: i.resultType === 4 ? getzsSmallImg(i.link) : getSmallImg(i.link),
+        showUrl: i.resultType === 4 ? getzsShowImg(i.link) : getShowImg(i.link),
+      }))
+      total.value = res.data.data.total
+
+      yuanImages.value = res.data.data.records.filter(item => item.resultType !== 1)
     })
     // flystatus.value = res.data.data.ai_type_str
   })

--
Gitblit v1.9.3