From e0054b6cb29e81712b660222744346975c575465 Mon Sep 17 00:00:00 2001 From: zhangwenshuai Date: Wed, 22 Jul 2020 15:25:47 +0800 Subject: [PATCH] update param --- components/apolloTable/component/Cell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/apolloTable/component/Cell.tsx b/components/apolloTable/component/Cell.tsx index 771d167..7f9cb4a 100644 --- a/components/apolloTable/component/Cell.tsx +++ b/components/apolloTable/component/Cell.tsx @@ -244,7 +244,7 @@ const Cell = (props: CellProps) => { // 当前已选中,则进入编辑状态 setStatus('edit'); if (typeof onEmitMsg === 'function') { - onEmitMsg({ rowId: record.id, columnName, status: EDIT_STATUS.EDITING }); + onEmitMsg({ rowId: record.id, columnCode: columnName, status: EDIT_STATUS.EDITING }); } if (dom) { // 给当前dom添加编辑状态 -- 2.21.0