From 712b1c3b5e48c6b534f687b02710464fb8a24a97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E7=81=BF?= <2669958319@qq.com> Date: Sun, 4 Jan 2026 16:04:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=BC=B9=E7=AA=97=E8=BE=93?= =?UTF-8?q?=E5=85=A5=E3=80=81readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README_zh.md | 2 +- entry/src/main/ets/pages/Dialog.ets | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README_zh.md b/README_zh.md index 29163fd..4d08dc4 100644 --- a/README_zh.md +++ b/README_zh.md @@ -59,7 +59,7 @@ import { initTable } from '@ohos/vtable'; this.vTableController.frozenRow(Number(value1) + 1) ``` -取消冻结行 +取消冻结行,解冻后需要进行刷新 ```typescript import { initTable } from '@ohos/vtable'; diff --git a/entry/src/main/ets/pages/Dialog.ets b/entry/src/main/ets/pages/Dialog.ets index 5c10d98..a93a123 100644 --- a/entry/src/main/ets/pages/Dialog.ets +++ b/entry/src/main/ets/pages/Dialog.ets @@ -34,6 +34,7 @@ export struct OptionDialog { .onChange((value) => { this.strValue1 = value }) + .type(this.dialogType === DialogType.MODIFY_TITLE || this.dialogType === DialogType.SET_ROW_DIVIDER ? InputType.Normal : InputType.Number) } if (this.dialogType === DialogType.MODIFY_TITLE || this.dialogType === DialogType.SET_ROW_HEIGHT || -- Gitee