42 lines
822 B
Vue
42 lines
822 B
Vue
|
|
<template>
|
||
|
|
<div class="inventory-container">
|
||
|
|
<BasePage
|
||
|
|
:qrcode="false"
|
||
|
|
:querys="querys"
|
||
|
|
:showControl="false"
|
||
|
|
:useWarehouseIds="true"
|
||
|
|
:warehouseOptions="warehouseOptions"
|
||
|
|
:showMaterialType="true"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import BasePage from '@/views/wms/coil/panels/base.vue'
|
||
|
|
import { SPLIT_WAREHOUSE_OPTIONS } from '../config'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'SplitInventory',
|
||
|
|
components: {
|
||
|
|
BasePage,
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
// 分条集成库存直接复用钢卷基础查询面板,仅切换到分条成品链路库区。
|
||
|
|
querys: {
|
||
|
|
dataType: 1,
|
||
|
|
status: 0,
|
||
|
|
},
|
||
|
|
warehouseOptions: SPLIT_WAREHOUSE_OPTIONS,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="scss">
|
||
|
|
.inventory-container {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
</style>
|