riku
2024-03-21 5f20f4bba739f0f81101a2c1d99f494647125e05
src/views/fysp/evaluation/components/precheck/components/CompCheckExemption.vue
@@ -23,15 +23,17 @@
    // 步骤下标
    modelValue: Number
  },
  emits: ['update:modelValue'],
  emits: ['update:modelValue', 'change'],
  data() {
    return {
      // 豁免条目
      exemptionItems: []
    };
  },
  methods: {
    // 跳转下一步
    nextStep() {
      this.$emit('change', this.exemptionItems);
      this.$emit('update:modelValue', this.modelValue + 1);
    },
    // 跳转下一步