diff --git a/src/views/materialManagement/productionMaterial/MmInventory.vue b/src/views/materialManagement/productionMaterial/MmInventory.vue index 9201cbe..947c658 100644 --- a/src/views/materialManagement/productionMaterial/MmInventory.vue +++ b/src/views/materialManagement/productionMaterial/MmInventory.vue @@ -912,6 +912,8 @@ function queryRecord() { function handleRecordFlagChange(value) { // 同步更新inoroutFlag inoroutFlag.value = value + // 更新查询参数中的recordFlag + queryParamsRecord.recordFlag = value // 更新出入库类型列表 getTypeOfWarehousingList(value) // 重新查询记录 diff --git a/src/views/materialManagement/productionMaterial/MmRecordOutbound.vue b/src/views/materialManagement/productionMaterial/MmRecordOutbound.vue index 7926465..4b4dcdc 100644 --- a/src/views/materialManagement/productionMaterial/MmRecordOutbound.vue +++ b/src/views/materialManagement/productionMaterial/MmRecordOutbound.vue @@ -305,7 +305,7 @@ const columns = ref([ { visible: true, align: 'center', type: '', prop: 'quantity', label: '出库数量' }, { visible: false, align: 'center', type: '', prop: 'unit', label: '计量单位', showOverflowTooltip: true }, { visible: true, align: 'center', type: 'dict', prop: 'transactionType', label: '出库类型', showOverflowTooltip: true }, - { visible: false, align: 'center', type: '', prop: 'batchNo', label: '批次号', showOverflowTooltip: true }, + { visible: true, align: 'center', type: '', prop: 'batchNo', label: '批次号', showOverflowTooltip: true }, { visible: true, align: 'center', type: '', prop: 'workorder', label: '工单号', showOverflowTooltip: true }, { visible: true, align: 'center', type: '', prop: 'operator', label: '操作员', showOverflowTooltip: true }, { visible: false, align: 'center', type: '', prop: 'remarks', label: '备注', showOverflowTooltip: true }