From 697c405ac874da346e74df40266763370355154d Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期六, 08 三月 2025 15:40:25 +0800 Subject: [PATCH] ASN单 --- src/views/components/RouteViewModal.vue | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/views/components/RouteViewModal.vue b/src/views/components/RouteViewModal.vue index 22dbb02..f514f9c 100644 --- a/src/views/components/RouteViewModal.vue +++ b/src/views/components/RouteViewModal.vue @@ -4,7 +4,7 @@ * @version: * @Date: 2024-06-18 15:09:48 * @LastEditors: Ben Lin - * @LastEditTime: 2024-08-04 16:34:13 + * @LastEditTime: 2024-08-13 20:38:51 --> <template> <BasicModal @@ -16,7 +16,7 @@ :width="width" > <!-- 杩欓噷宓屽叆router-view鏉ュ睍绀鸿矾鐢遍〉闈� --> - <Route_View :rotId="rotId" :rotType="rotType" /> + <Route_View :rotId="rotId" :rotType="rotType" :prodCode="prodCode" :custCode="custCode" /> </BasicModal> </template> <script lang="ts" setup> @@ -32,6 +32,8 @@ const width = ref(''); const rotId = ref(''); const rotType = ref(''); + const prodCode = ref(''); + const custCode = ref(''); const submitFn = ref(''); const slotName = ref(''); @@ -39,9 +41,10 @@ setModalProps({ confirmLoading: false, cancelText: '鍏抽棴', showOkBtn: false }); rotId.value = data?.rotId; rotType.value = data?.rotType; + prodCode.value = data?.prodCode; + custCode.value = data?.custCode; slotName.value = data?.slotName; submitFn.value = data?.submitFn; //'rvSubmit' - }); onMounted(() => {}); -- Gitblit v1.9.3