CrossCutting.vue
865 Bytes
<!--二楼横切区-->
<template>
<a-card :bordered="false">
<a-tabs>
<a-tab-pane key="3" tab="卷出库页">
<CrossCuttingProductOrder :zoneCode="'A2'"/>
</a-tab-pane>
<a-tab-pane key="4" tab="加工库存页">
<MachineTransfer :zoneCode="'A2'" :A2ButtonPermission="'1'"/>
</a-tab-pane>
<a-tab-pane key="6" tab="成品入库页">
<MachineTransfer :zoneCode="'A2'" :A2ButtonPermission="'2'"/>
</a-tab-pane>
</a-tabs>
</a-card>
</template>
<script lang="ts">
import MachineTransfer from "../MachineOperation/MachineTransfer.vue";
import CrossCuttingProductOrder from "./CrossCuttingProductOrder.vue";
export default ({
// 注册组件和图标
components: {
MachineTransfer,
CrossCuttingProductOrder
},
});
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>