zhongshujie
6 天以前 bb584963c6abe77c5577cbcad3c9956b69444ae9
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();