张诺
昨天 b41552e7d56a7068e9080a475baaef9c173f8b7e
src/views/qualityManagement/metricMaintenance/ParamFormDialog.vue
@@ -3,6 +3,7 @@
    v-model="dialogVisible"
    :title="computedTitle"
    :operation-type="operationType"
    :inspectType="inspectType"
    width="520px"
    @close="emit('close')"
    @cancel="handleCancel"
@@ -40,7 +41,8 @@
const props = defineProps({
  modelValue: { type: Boolean, default: false },
  operationType: { type: String, default: 'add' }, // add | edit
  form: { type: Object, required: true }
  form: { type: Object, required: true },
  inspectType: { type: String, default: null },
})
const emit = defineEmits(['update:modelValue', 'close', 'cancel', 'confirm'])