From f6cd44aa3a1d803dc8d45c3550f8b777d4c88ba1 Mon Sep 17 00:00:00 2001 From: zhongshujie <2862698242@qq.com> Date: 星期六, 19 七月 2025 23:31: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