qihang-ecom-erp-open/vue/src/views/shipping/stockup/warehouse/index.vue

42 lines
919 B
Vue
Raw Normal View History

2025-05-23 21:59:20 +08:00
<template>
2025-10-07 13:53:31 +08:00
<div class="app-container">
<el-tabs v-model="activeName" @tab-click="handleClick" type="card">
<el-tab-pane label="发货订单" name="stockShip">
<warehouse-shipment></warehouse-shipment>
</el-tab-pane>
<el-tab-pane label="发货订单商品" name="stockShipItem" lazy>
<warehouse-shipment-item></warehouse-shipment-item>
</el-tab-pane>
2025-05-25 14:30:11 +08:00
2025-10-07 13:53:31 +08:00
</el-tabs>
2025-05-23 21:59:20 +08:00
</div>
</template>
<script>
2025-10-07 13:53:31 +08:00
import warehouseShipment from "@/views/shipping/stockup/warehouse/order_list.vue";
import warehouseShipmentItem from "@/views/shipping/stockup/warehouse/order_item_list.vue";
2025-05-23 21:59:20 +08:00
export default {
2025-10-07 13:53:31 +08:00
name: "stocking",
components:{warehouseShipment,warehouseShipmentItem},
2025-05-23 21:59:20 +08:00
data() {
return {
2025-10-07 13:53:31 +08:00
activeName: 'stockShip'
2025-05-23 21:59:20 +08:00
};
},
2025-10-07 13:53:31 +08:00
created() {
2025-05-23 21:59:20 +08:00
2025-05-25 14:30:11 +08:00
},
2025-10-07 13:53:31 +08:00
mounted() {
2025-05-23 21:59:20 +08:00
},
methods: {
2025-10-07 13:53:31 +08:00
handleClick(tab, event) {
console.log(tab, event);
2025-05-23 21:59:20 +08:00
}
}
};
</script>