From 665c1372ff732ba6b5ae23e2c92d52b76cdf2beb Mon Sep 17 00:00:00 2001 From: cuilei <ray_tsu1@163.com> Date: 星期一, 18 八月 2025 18:06:07 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/views/cms/CuttingList.vue | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 insertions(+), 0 deletions(-) diff --git a/src/views/cms/CuttingList.vue b/src/views/cms/CuttingList.vue new file mode 100644 index 0000000..d042b3b --- /dev/null +++ b/src/views/cms/CuttingList.vue @@ -0,0 +1,43 @@ +<template > + <a-card :bordered="false" :body-style="{ padding: '0 24px 24px 24px' }"> + <a-tabs default-active-key="1"> + <a-tab-pane key="1" tab="鍒�鍏蜂俊鎭�"> + <cutting-tool-list ref="cuttingToolList"></cutting-tool-list> + </a-tab-pane> + <a-tab-pane key="2" tab="鍒�鍏峰簱瀛�"> + <cutting-inventory-list ref="cuttingInventoryList"></cutting-inventory-list> + </a-tab-pane> + <a-tab-pane key="3" tab="鍒�鍏烽瀹氬鍛�"> + <rated-life-list ref="RatedLifeList"></rated-life-list> + </a-tab-pane> + </a-tabs> + </a-card> +</template> + +<script> +import CuttingToolList from './CuttingToolList' +import CuttingInventoryList from './CuttingInventoryList' +import RatedLifeList from './RatedLifeList.vue' + +export default { + name: '鍒�鍏峰彴璐�', + components: { + CuttingToolList, + CuttingInventoryList, + RatedLifeList, + }, + data() { + return {} + }, + methods: { + callback(key) { + console.log('鍒囨崲鍒伴〉绛�:', key) + } + } +} +</script> + +<style scoped> +@import '~@assets/less/common.less'; + +</style> -- Gitblit v1.9.3