diff --git a/apps/web-antd/src/components/table-action/table-action.vue b/apps/web-antd/src/components/table-action/table-action.vue index 45a22719..e2bea93b 100644 --- a/apps/web-antd/src/components/table-action/table-action.vue +++ b/apps/web-antd/src/components/table-action/table-action.vue @@ -244,28 +244,24 @@ function handleMenuClick(e: any) { action.onClick(); } } - -/** 生成稳定的 key */ -function getActionKey(action: ActionItem, index: number) { - return `${action.label || ''}-${action.type || ''}-${index}`; -}