From 97eb39caf61e8ea8f70776af267f6deed51720fe Mon Sep 17 00:00:00 2001 From: 杨磊 <505174330@qq.com> Date: 星期一, 28 七月 2025 09:43:39 +0800 Subject: [PATCH] Merge branch 'master' of http://182.92.203.7:2001/r/testbookLayout --- 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