feat(wms): 新增发货相关功能及优化钢卷选择逻辑
- 新增发货计划钢卷操作记录页面 - 新增发货分级管理页面 - 新增我的钢卷管理页面 - 在钢卷发货页面增加质量状态校验 - 在基础面板组件中增加质量状态选择功能 - 优化钢卷选择器筛选参数
This commit is contained in:
37
klp-ui/src/views/wms/delivery/grading/index.vue
Normal file
37
klp-ui/src/views/wms/delivery/grading/index.vue
Normal file
@@ -0,0 +1,37 @@
|
||||
<template>
|
||||
<BasePage
|
||||
:qrcode="qrcode"
|
||||
:querys="querys"
|
||||
:labelType="labelType"
|
||||
:showStatus="showStatus"
|
||||
:hideType="hideType"
|
||||
:showControl="showControl"
|
||||
:showGrade="showGrade"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import BasePage from '@/views/wms/coil/panels/base.vue';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
BasePage
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
qrcode: false,
|
||||
querys: {
|
||||
dataType: 1,
|
||||
materialType: '成品',
|
||||
itemType: 'product',
|
||||
status: 0
|
||||
},
|
||||
labelType: '3',
|
||||
showStatus: false,
|
||||
hideType: true,
|
||||
showControl: false,
|
||||
showGrade: true
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user