StackingLayers.vue
646 Bytes
<!--二楼叠片区域-->
<template>
<a-card :bordered="false">
<a-tabs>
<a-tab-pane key="1" tab="铁芯出库页">
<StackingLayersProductOrder :zoneCode="'I'"/>
</a-tab-pane>
<a-tab-pane key="2" tab="过跨控制页">
<X6Graph/>
</a-tab-pane>
</a-tabs>
</a-card>
</template>
<script lang="ts">
import StackingLayersProductOrder from "./StackingLayersProductOrder.vue";
import X6Graph from "./X6Graph.vue";
export default ({
// 注册组件和图标
components: {
StackingLayersProductOrder,
X6Graph
},
});
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>