You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
611 B
Vue
40 lines
611 B
Vue
11 months ago
|
<template>
|
||
|
<div>
|
||
11 months ago
|
<el-tabs type="border-card" style="margin: 15px">
|
||
11 months ago
|
|
||
11 months ago
|
<el-tab-pane label="拆零库存">
|
||
|
<fifoPanel
|
||
11 months ago
|
style="margin: -15px"
|
||
11 months ago
|
:panelType="1"
|
||
|
></fifoPanel>
|
||
|
</el-tab-pane>
|
||
11 months ago
|
|
||
11 months ago
|
<el-tab-pane label="整取库存">
|
||
|
<fifoPanel
|
||
11 months ago
|
style="margin: -15px"
|
||
11 months ago
|
:panelType="2"
|
||
|
></fifoPanel>
|
||
|
</el-tab-pane>
|
||
11 months ago
|
|
||
11 months ago
|
</el-tabs>
|
||
11 months ago
|
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
11 months ago
|
import fifoPanel from "./IoSplitFifoCodePanel";
|
||
11 months ago
|
|
||
11 months ago
|
export default {
|
||
|
name: "PrescribeTagCode",
|
||
|
components: {
|
||
|
fifoPanel
|
||
11 months ago
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|