From bb584963c6abe77c5577cbcad3c9956b69444ae9 Mon Sep 17 00:00:00 2001
From: zhongshujie <2862698242@qq.com>
Date: 星期二, 01 七月 2025 17:17:30 +0800
Subject: [PATCH] 无人机样章

---
 src/components/dialogExaminations/index.vue |   21 +++++++++++----------
 1 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/src/components/dialogExaminations/index.vue b/src/components/dialogExaminations/index.vue
index b001916..91ce858 100644
--- a/src/components/dialogExaminations/index.vue
+++ b/src/components/dialogExaminations/index.vue
@@ -367,18 +367,19 @@
       ],
     };
   },
-  watch: {
-    cardList: {
-      handler(newVal) {
-        this.cardData = this.cardList;
-        if (newVal && newVal.length) {
-          this.loading = false;
-        }
-      },
-      immediate: true,
-      deep: true,
+watch: {
+  cardList: {
+    handler(newVal) {
+      if (newVal && newVal.length) {
+        this.cardData = newVal;
+        this.loading = false;
+      }
     },
+    immediate: true,
+    deep: true,
   },
+},
+
   mounted() {
     this.getCollectIdList();
     this.getErrorList();

--
Gitblit v1.9.1