diff --git a/jeecgboot-vue3/src/components/Table/src/components/editable/EditableCell.vue b/jeecgboot-vue3/src/components/Table/src/components/editable/EditableCell.vue index 75a67cc31..edc2541ae 100644 --- a/jeecgboot-vue3/src/components/Table/src/components/editable/EditableCell.vue +++ b/jeecgboot-vue3/src/components/Table/src/components/editable/EditableCell.vue @@ -371,9 +371,7 @@ if (props.column.dataIndex) { if (!props.record.editValueRefs) props.record.editValueRefs = {}; - // update-begin--author:liaozhiyang---date:20250206---for:【issues/7709】当dataSource是响应式时,单元格编辑输入会自动关闭 - props.record.editValueRefs[props.column.dataIndex] = unref(currentValueRef); - // update-end--author:liaozhiyang---date:20250206---for:【issues/7709】当dataSource是响应式时,单元格编辑输入会自动关闭 + props.record.editValueRefs[props.column.dataIndex] = currentValueRef; } /* eslint-disable */ props.record.onCancelEdit = () => { diff --git a/jeecgboot-vue3/src/components/Table/src/components/editable/index.ts b/jeecgboot-vue3/src/components/Table/src/components/editable/index.ts index 94ee499ac..41914737b 100644 --- a/jeecgboot-vue3/src/components/Table/src/components/editable/index.ts +++ b/jeecgboot-vue3/src/components/Table/src/components/editable/index.ts @@ -73,8 +73,6 @@ export type EditRecordRow = Partial< submitCbs: Cbs[]; cancelCbs: Cbs[]; validCbs: Cbs[]; - // update-begin--author:liaozhiyang---date:20250206---for:【issues/7709】当dataSource是响应式时,单元格编辑输入会自动关闭 - editValueRefs: Recordable; - // update-end--author:liaozhiyang---date:20250206---for:【issues/7709】当dataSource是响应式时,单元格编辑输入会自动关闭 + editValueRefs: Recordable; } & T >;