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.
udiwms-vue-frame/src/views/collect/ioSplitFifoCodeBlank.vue

40 lines
611 B
Vue

11 months ago
<template>
<div>
<el-tabs type="border-card" style="margin: 15px">
<el-tab-pane label="拆零库存">
<fifoPanel
style="margin: -15px"
:panelType="1"
></fifoPanel>
</el-tab-pane>
<el-tab-pane label="整取库存">
<fifoPanel
style="margin: -15px"
:panelType="2"
></fifoPanel>
</el-tab-pane>
</el-tabs>
</div>
</template>
<script>
import fifoPanel from "./IoSplitFifoCodePanel";
export default {
name: "PrescribeTagCode",
components: {
fifoPanel
}
}
</script>
<style scoped>
</style>