From 0232a34d2339afaffe317ddf29b29316727d93d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Mon, 21 Jul 2025 11:55:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=AF=E6=8C=81=E5=8E=9F=E6=96=99=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E8=BF=9C=E7=A8=8B=E6=90=9C=E7=B4=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../KLPService/ProductSelect/index.vue | 1 + .../KLPService/RawMaterialSelect/index.vue | 32 ++++++++++++++++--- klp-ui/src/utils/enums.js | 8 ++++- klp-ui/src/views/wms/order/panels/detail.vue | 10 ++++-- .../src/views/wms/stockIo/panels/detail.vue | 28 +++++++++++++--- 5 files changed, 67 insertions(+), 12 deletions(-) diff --git a/klp-ui/src/components/KLPService/ProductSelect/index.vue b/klp-ui/src/components/KLPService/ProductSelect/index.vue index 490756e5..39f2653f 100644 --- a/klp-ui/src/components/KLPService/ProductSelect/index.vue +++ b/klp-ui/src/components/KLPService/ProductSelect/index.vue @@ -4,6 +4,7 @@ :placeholder="placeholder" :disabled="disabled" filterable + clearable @change="onChange" style="width: 100%" :value-key="'productId'" diff --git a/klp-ui/src/components/KLPService/RawMaterialSelect/index.vue b/klp-ui/src/components/KLPService/RawMaterialSelect/index.vue index 06a98d65..6ff4e014 100644 --- a/klp-ui/src/components/KLPService/RawMaterialSelect/index.vue +++ b/klp-ui/src/components/KLPService/RawMaterialSelect/index.vue @@ -4,6 +4,9 @@ :placeholder="placeholder" filterable clearable + remote + :remote-method="debouncedRemoteMethod" + :loading="loading" @change="onChange" style="width: 100%" :value-key="'rawMaterialId'" @@ -25,6 +28,16 @@