From fe35e7e9faa159a58b59a9f8085934ae60535856 Mon Sep 17 00:00:00 2001 From: liyong <18434998025@163.com> Date: 星期三, 23 四月 2025 14:30:54 +0800 Subject: [PATCH] feat: 单丝参数 --- src/pages/production/twist/receive/plate/form.vue | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/src/pages/production/twist/receive/plate/form.vue b/src/pages/production/twist/receive/plate/form.vue index 1d584b0..8358eba 100644 --- a/src/pages/production/twist/receive/plate/form.vue +++ b/src/pages/production/twist/receive/plate/form.vue @@ -44,16 +44,23 @@ import { useToast } from "wot-design-uni"; const emits = defineEmits(["refresh"]); +const paramsId = ref(); const toast = useToast(); const { form: model } = useFormData({ diskMaterial: undefined, // 鐩樺叿绫诲瀷 model: undefined, // 灏哄 amount: undefined, // 鏁伴噺 supplier: undefined, + type: "鐩樺叿", }); const submit = async () => { - const { code } = await TwistApi.addStrandedWireDish([model]); + const { code } = await TwistApi.addStrandedWireDish([ + { + wireId: paramsId.value, + ...model, + }, + ]); if (code == 200) { toast.success("鏂板鎴愬姛"); emits("refresh"); @@ -61,6 +68,10 @@ } }; +onLoad((options: any) => { + paramsId.value = options.id; +}); + defineExpose({ submit, }); -- Gitblit v1.9.3