From 45820b21824e18f581399c1eae4cb54c4cc23601 Mon Sep 17 00:00:00 2001 From: lizw-2015 <1183409807@qq.com> Date: Tue, 29 Jul 2025 19:08:13 +0800 Subject: [PATCH] =?UTF-8?q?feat(inventory):=20=E5=A2=9E=E5=8A=A0=E7=8E=AF?= =?UTF-8?q?=E5=A2=83=E7=AD=9B=E9=80=89=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在库存查询界面添加环境筛选选项 - 后端增加根据环境 ID筛选的功能 - 更新请求模型,添加 envId 字段 --- src/views/inventory/query.vue | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/views/inventory/query.vue b/src/views/inventory/query.vue index 1ecd99c..3e1d284 100644 --- a/src/views/inventory/query.vue +++ b/src/views/inventory/query.vue @@ -43,6 +43,17 @@ interface ComponentData { const data: ComponentData = { formFields: [ { + dataPath: 'envId', label: '环境', input: 'SelectV2', + inputProps: { + placeholder: '选择环境', + clearable: true, + options: [ + { value: "10", label: "物理环境" }, + { value: "13", label: "虚拟环境1" }, + ], + } + }, + { dataPath: 'lpn', label: '托盘条码', input: 'Input', inputProps: { placeholder: '托盘条码',