From d64ba0a7263c70fc6c02f8fd9ba46c4b08bc1776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Mon, 12 Jan 2026 10:05:41 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat(=E4=BA=A7=E5=93=81=E9=80=89=E6=8B=A9):?= =?UTF-8?q?=20=E6=B7=BB=E5=8A=A0=E6=9C=80=E8=BF=91=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E5=B9=B6=E4=BC=98=E5=8C=96=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=A1=86=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在产品和原材料选择组件中添加最近选择功能,显示最近选择的5项记录 优化输入框布局,将长属性分行显示提高可读性 --- .../KLPService/ProductSelect/index.vue | 72 +++++++++++++++++-- .../KLPService/RawMaterialSelect/index.vue | 68 +++++++++++++++--- 2 files changed, 125 insertions(+), 15 deletions(-) diff --git a/klp-ui/src/components/KLPService/ProductSelect/index.vue b/klp-ui/src/components/KLPService/ProductSelect/index.vue index 0c7fd27a..be724d59 100644 --- a/klp-ui/src/components/KLPService/ProductSelect/index.vue +++ b/klp-ui/src/components/KLPService/ProductSelect/index.vue @@ -27,16 +27,20 @@ @keyup.enter.native="handleQuery" /> - + - + - + - + 搜索 @@ -44,6 +48,17 @@ +

最近选择

+ + + + + + + + + +
diff --git a/klp-ui/src/components/KLPService/RawMaterialSelect/index.vue b/klp-ui/src/components/KLPService/RawMaterialSelect/index.vue index e1dea4c8..7b317379 100644 --- a/klp-ui/src/components/KLPService/RawMaterialSelect/index.vue +++ b/klp-ui/src/components/KLPService/RawMaterialSelect/index.vue @@ -23,19 +23,24 @@ @keyup.enter.native="handleQuery" /> - + - + - + - + - + 搜索 @@ -43,6 +48,16 @@ +

最近选择

+ + + + + + + + +
规格:{{ item.specification || '-' }}
-
单位:{{ item.unit || '-' }}
材质:{{ item.material || '-' }}
厂家:{{ item.manufacturer || '-' }}
表面处理:{{ item.surfaceTreatmentDesc || '-' }}
@@ -89,7 +103,7 @@ From f7d5838087de4417fee88b550c6e0f0b94ae6e55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Mon, 12 Jan 2026 10:06:24 +0800 Subject: [PATCH 2/2] =?UTF-8?q?feat(ProductSelect):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=8E=82=E5=AE=B6=E3=80=81=E8=A1=A8=E9=9D=A2=E5=A4=84=E7=90=86?= =?UTF-8?q?=E5=92=8C=E9=94=8C=E5=B1=82=E4=BF=A1=E6=81=AF=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在商品选择组件中新增厂家、表面处理和锌层信息的展示,以提供更全面的商品详情 --- klp-ui/src/components/KLPService/ProductSelect/index.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/klp-ui/src/components/KLPService/ProductSelect/index.vue b/klp-ui/src/components/KLPService/ProductSelect/index.vue index be724d59..6f396765 100644 --- a/klp-ui/src/components/KLPService/ProductSelect/index.vue +++ b/klp-ui/src/components/KLPService/ProductSelect/index.vue @@ -76,6 +76,9 @@
规格:{{ item.specification || '-' }}
材质:{{ item.material || '-' }}
+
厂家:{{ item.manufacturer || '-' }}
+
表面处理:{{ item.surfaceTreatmentDesc || '-' }}
+
锌层:{{ item.zincLayer || '-' }}