From e97bf2c8c21eb9b89384ac4ab59b3b1d0ba781d4 Mon Sep 17 00:00:00 2001
From: 杨磊 <505174330@qq.com>
Date: 星期三, 23 七月 2025 14:52:00 +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