feat(wms): 新增包装和其他内部仓的收卷页面
添加两个新的Vue组件用于展示包装用内部仓和其他内部仓的收卷状态页面,包含待收卷和已收卷两个标签页
This commit is contained in:
44
klp-ui/src/views/wms/coil/views/other.vue
Normal file
44
klp-ui/src/views/wms/coil/views/other.vue
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<template>
|
||||||
|
<el-tabs class="app-container" v-model="activeTab">
|
||||||
|
<el-tab-pane label="待收卷" name="second">
|
||||||
|
<BasePage :qrcode="qrcode" :querys="querys2" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery"
|
||||||
|
:hideType="hideType" />
|
||||||
|
</el-tab-pane>
|
||||||
|
<el-tab-pane label="已收卷" name="first">
|
||||||
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery"
|
||||||
|
:hideType="hideType" />
|
||||||
|
</el-tab-pane>
|
||||||
|
</el-tabs>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import BasePage from '../panels/base.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
BasePage
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
qrcode: false,
|
||||||
|
activeTab: 'second',
|
||||||
|
querys: {
|
||||||
|
dataType: 1,
|
||||||
|
status: 0,
|
||||||
|
warehouseId: '2027272748164853762', // 其他内部仓
|
||||||
|
// materialType: '废品'
|
||||||
|
},
|
||||||
|
querys2: {
|
||||||
|
dataType: 1,
|
||||||
|
status: 0,
|
||||||
|
nextWarehouseId: '2027272748164853762', // 其他内部仓
|
||||||
|
// materialType: '废品'
|
||||||
|
},
|
||||||
|
hideWarehouseQuery: true,
|
||||||
|
showAbnormal: true,
|
||||||
|
labelType: '2',
|
||||||
|
hideType: false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
44
klp-ui/src/views/wms/coil/views/pack.vue
Normal file
44
klp-ui/src/views/wms/coil/views/pack.vue
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
<template>
|
||||||
|
<el-tabs class="app-container" v-model="activeTab">
|
||||||
|
<el-tab-pane label="待收卷" name="second">
|
||||||
|
<BasePage :qrcode="qrcode" :querys="querys2" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery"
|
||||||
|
:hideType="hideType" />
|
||||||
|
</el-tab-pane>
|
||||||
|
<el-tab-pane label="已收卷" name="first">
|
||||||
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery"
|
||||||
|
:hideType="hideType" />
|
||||||
|
</el-tab-pane>
|
||||||
|
</el-tabs>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import BasePage from '../panels/base.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
BasePage
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
qrcode: false,
|
||||||
|
activeTab: 'second',
|
||||||
|
querys: {
|
||||||
|
dataType: 1,
|
||||||
|
status: 0,
|
||||||
|
warehouseId: "2027272581575487489", // 包装用内部仓
|
||||||
|
// materialType: '废品'
|
||||||
|
},
|
||||||
|
querys2: {
|
||||||
|
dataType: 1,
|
||||||
|
status: 0,
|
||||||
|
nextWarehouseId: "2027272581575487489", // 包装用内部仓
|
||||||
|
// materialType: '废品'
|
||||||
|
},
|
||||||
|
hideWarehouseQuery: true,
|
||||||
|
showAbnormal: true,
|
||||||
|
labelType: '2',
|
||||||
|
hideType: false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user