feat(wms): 新增在分条库的钢卷页面基础配置
添加onlySplit.vue文件,实现线圈分切页面的基础框架和配置,包括仓库ID、标签类型等参数设置
This commit is contained in:
26
klp-ui/src/views/wms/coil/onlySplit.vue
Normal file
26
klp-ui/src/views/wms/coil/onlySplit.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery" :hideType="hideType" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import BasePage from './panels/base.vue';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
BasePage
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
qrcode: false,
|
||||
querys: {
|
||||
dataType: 1,
|
||||
warehouseIds: '1988150150521090049,1988150487185289217,1988150750390448129,1988150971895836674',
|
||||
// materialType: '废品'
|
||||
},
|
||||
hideWarehouseQuery: true,
|
||||
labelType: '2',
|
||||
hideType: false,
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user