feat(wms): 添加钢卷吞吐记录功能及优化日志查询

- 新增根据钢卷ID查询操作记录的API接口
- 在钢卷管理页面添加吞吐记录查看功能
- 优化日志表格组件,支持按业务类型和出入库类型筛选
- 增加日志删除功能
- 调整ActualWarehouseSelect组件支持清除输入
This commit is contained in:
砂糖
2026-03-06 13:04:17 +08:00
parent bc99d985f5
commit a024be0858
5 changed files with 214 additions and 87 deletions

View File

@@ -0,0 +1,27 @@
<template>
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery"
:hideType="hideType" :showControl="showControl" :showWareLog="showWareLog" />
</template>
<script>
import BasePage from './panels/base.vue';
export default {
components: {
BasePage
},
data() {
return {
qrcode: false,
querys: {
// dataType: 1,
},
hideWarehouseQuery: true,
showWareLog: true,
showControl: false,
labelType: '2',
hideType: false,
}
}
}
</script>