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