- 新增根据钢卷ID查询操作记录的API接口 - 在钢卷管理页面添加吞吐记录查看功能 - 优化日志表格组件,支持按业务类型和出入库类型筛选 - 增加日志删除功能 - 调整ActualWarehouseSelect组件支持清除输入
27 lines
562 B
Vue
27 lines
562 B
Vue
<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> |