From 06ec540c4128d9ac36ba395be171c909689dfe2a Mon Sep 17 00:00:00 2001 From: dxc Date: Mon, 2 Mar 2026 16:54:47 +0800 Subject: [PATCH] fix: correct advanced filter field options in semi.vue Co-authored-by: aider (openai/DeepSeek-V3.2-Thinking) --- inventory-web/src/views/stock/inbound/semi.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/inventory-web/src/views/stock/inbound/semi.vue b/inventory-web/src/views/stock/inbound/semi.vue index 4a2ca9c..464a4c3 100644 --- a/inventory-web/src/views/stock/inbound/semi.vue +++ b/inventory-web/src/views/stock/inbound/semi.vue @@ -643,12 +643,13 @@ const fieldOptions = ref([ { label: 'BOM编号', value: 'bom_code' }, { label: 'BOM版本', value: 'bom_version' }, { label: '工单号', value: 'work_order_code' }, - { label: '原料成本', value: 'raw_material_cost' }, - { label: '单件成本', value: 'unit_total_cost' }, + { label: '估算成本', value: 'raw_material_cost' }, + { label: '基于BOM成本', value: 'unit_total_cost' }, { label: '总成本', value: 'total_price' }, { label: '生产负责人', value: 'production_manager' }, - { label: '生产开始', value: 'production_start_time' }, + { label: '生产时间', value: 'production_start_time' }, { label: '生产结束', value: 'production_end_time' }, + { label: '详情链接', value: 'detail_link' }, ]) const operatorOptions = ref([ { label: '等于', value: '=' },