refactor(warehouse): 将仓库相关术语统一修改为库位 style(warehouse): 优化库位管理界面表单布局 fix(warehouse): 修复树形组件数据展示问题 新增钢卷状态管理功能,支持在列表中直接修改状态 为钢卷管理添加库位查询条件,优化数据展示逻辑 统一将仓库相关术语修改为库位,保持系统一致性 移除部分无用代码和注释,优化界面布局
25 lines
465 B
Vue
25 lines
465 B
Vue
<template>
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: false,
|
|
querys: {
|
|
// itemType: 'rubbish',
|
|
// dataType: 2
|
|
warehouseId: 111,
|
|
},
|
|
hideWarehouseQuery: true,
|
|
labelType: '3'
|
|
}
|
|
}
|
|
}
|
|
</script> |