VerticalCuttingDelivery.vue 696 Bytes
<!--纵切发货区-->
<template>
  <a-card :bordered="false">
    <a-tabs>
      <a-tab-pane key="4" tab="卷入库页">
        <MachineTransfer :zoneCode="'S'" :A2ButtonPermission="'2'"/>
      </a-tab-pane>
      <a-tab-pane key="5" tab="卷出库页">
        <LoadingPlan />
      </a-tab-pane>

    </a-tabs>
  </a-card>
</template>

<script lang="ts">
import MachineTransfer from "../MachineOperation/MachineTransfer.vue";
import LoadingPlan from "@views/system/area/verticalCuttingDelivery/LoadingPlan.vue";

export default ({
  // 注册组件和图标
  components: {
    MachineTransfer,
    LoadingPlan
  },

});
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>