refactor(wms): 重构钢卷管理模块,优化代码结构
- 将钢卷管理页面拆分为基础组件和多个视图组件 - 新增历史数据和产品数据专用视图 - 重构钢卷追溯功能,支持更详细的操作记录展示 - 移除首页和订单看板中不再使用的组件 - 优化产品选择组件,默认类型改为undefined - 修改钢卷溯源API,支持更灵活的查询参数
This commit is contained in:
21
klp-ui/src/views/wms/coil/history.vue
Normal file
21
klp-ui/src/views/wms/coil/history.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<BasePage :qrcode="qrcode" :querys="querys"/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import BasePage from './panels/base.vue';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
BasePage
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
qrcode: false,
|
||||
querys: {
|
||||
dataType: 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user