From 33afacfaa04a6622c76d6ca1884b595233948848 Mon Sep 17 00:00:00 2001 From: liyong <18434998025@163.com> Date: 星期四, 24 四月 2025 17:07:38 +0800 Subject: [PATCH] feat: 单丝参数 --- src/pages/production/twist/receive/steelCore/form.vue | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/src/pages/production/twist/receive/steelCore/form.vue b/src/pages/production/twist/receive/steelCore/form.vue index 88dab37..d0e4c2c 100644 --- a/src/pages/production/twist/receive/steelCore/form.vue +++ b/src/pages/production/twist/receive/steelCore/form.vue @@ -43,6 +43,7 @@ import { useToast } from "wot-design-uni"; const emits = defineEmits(["refresh"]); +const paramsId = ref(); const toast = useToast(); const { form: model } = useFormData({ model: undefined, // 瑙勬牸鍨嬪彿 @@ -53,7 +54,12 @@ }); 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 +67,10 @@ } }; +onLoad((options: any) => { + paramsId.value = options.id; +}); + defineExpose({ submit, }); -- Gitblit v1.9.3