feat(wms): 新增钢卷状态管理和库位查询功能
refactor(warehouse): 将仓库相关术语统一修改为库位 style(warehouse): 优化库位管理界面表单布局 fix(warehouse): 修复树形组件数据展示问题 新增钢卷状态管理功能,支持在列表中直接修改状态 为钢卷管理添加库位查询条件,优化数据展示逻辑 统一将仓库相关术语修改为库位,保持系统一致性 移除部分无用代码和注释,优化界面布局
This commit is contained in:
25
klp-ui/src/views/wms/coil/rubbish.vue
Normal file
25
klp-ui/src/views/wms/coil/rubbish.vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user