From c725a557e9964d7681779da373eecb18f2188a45 Mon Sep 17 00:00:00 2001 From: Tom Date: Tue, 3 Feb 2026 14:07:53 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=94=9F=E4=BA=A7=E7=89=A9=E6=96=99):=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BE=9B=E5=BA=94=E5=95=86=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E5=B9=B6=E4=BC=98=E5=8C=96=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E5=91=98=E8=BE=93=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将仓库名称选择替换为供应商名称选择 - 将操作员输入框改为位置选择下拉框 - 新增供应商选项数据 --- .../productionMaterial/MmInventory.vue | 35 ++++++++++++++----- 1 file changed, 26 insertions(+), 9 deletions(-) diff --git a/src/views/materialManagement/productionMaterial/MmInventory.vue b/src/views/materialManagement/productionMaterial/MmInventory.vue index 72141b6..7a57fde 100644 --- a/src/views/materialManagement/productionMaterial/MmInventory.vue +++ b/src/views/materialManagement/productionMaterial/MmInventory.vue @@ -32,15 +32,15 @@ - + {{ $t('btn.search') }} {{ $t('btn.reset') }} @@ -230,7 +230,12 @@ - + + + {{ item.locationCode }} + {{ item.locationName }} + + @@ -373,7 +378,12 @@ - + + + {{ item.locationCode }} + {{ item.locationName }} + + @@ -856,11 +866,18 @@ const state = reactive({ options: {}, transactionOptions: {}, locationOptions: [], + supplierOptions: [ + { supplierName: '金水桥', supplierCode: '57' }, + { supplierName: '银雨', supplierCode: '56' }, + { supplierName: '格银', supplierCode: '52' }, + { supplierName: 'KSK', supplierCode: '51' } + ], inOrOut: '入库', recordData: [] }) -const { form, rules, rulesOut, rulesUpdate, options, transactionOptions, locationOptions, single, multiple, inOrOut, recordData } = toRefs(state) +const { form, rules, rulesOut, rulesUpdate, options, transactionOptions, locationOptions, supplierOptions, single, multiple, inOrOut, recordData } = + toRefs(state) // 关闭dialog function cancel() {