From bdaf75f5960a084fb50fa5900eb1eafa0a6bb1b2 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期四, 04 六月 2026 17:05:22 +0800
Subject: [PATCH] 修改发货限制
---
src/views/qualityManagement/metricMaintenance/ParamFormDialog.vue | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/src/views/qualityManagement/metricMaintenance/ParamFormDialog.vue b/src/views/qualityManagement/metricMaintenance/ParamFormDialog.vue
index 4c958a0..e74f3b6 100644
--- a/src/views/qualityManagement/metricMaintenance/ParamFormDialog.vue
+++ b/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'])
--
Gitblit v1.9.3