From 97a08afb5a7c767afb68a0d7078171a9882821d2 Mon Sep 17 00:00:00 2001 From: sakurayinfei <970412446@qq.com> Date: Thu, 30 Oct 2025 12:00:36 +0800 Subject: [PATCH] =?UTF-8?q?fix(table):=20=E5=88=A0=E9=99=A4=E6=9C=AA?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E7=9A=84=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/opendesign/src/table/types.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/opendesign/src/table/types.ts b/packages/opendesign/src/table/types.ts index 5bcccf273..e762d0311 100644 --- a/packages/opendesign/src/table/types.ts +++ b/packages/opendesign/src/table/types.ts @@ -19,8 +19,6 @@ export interface TableCellT { last?: boolean; } -export type ColumnKeysT = Array; - export type CellSpanT = ( rowIndex: number, columnIndex: number, @@ -38,12 +36,6 @@ export const tableProps = { columns: { type: Array as PropType, }, - /** - * 表头内容 ColumnKeysT - */ - columnKeys: { - type: Array as PropType, - }, /** * 表格数据 TableRowT[] */ -- Gitee