From 9cf9542144e4c3d96d2da94d0040528884a718dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E6=B5=B7=E6=9E=97?= Date: Thu, 20 Oct 2022 19:30:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B9=9D=E5=AE=AB=E6=A0=BC=E6=8B=BC=E9=9F=B3?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 李海林 --- entry/src/main/ets/model/keyboardKeyData.ets | 45 ++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/entry/src/main/ets/model/keyboardKeyData.ets b/entry/src/main/ets/model/keyboardKeyData.ets index 6c45206..2faf55b 100644 --- a/entry/src/main/ets/model/keyboardKeyData.ets +++ b/entry/src/main/ets/model/keyboardKeyData.ets @@ -16,6 +16,11 @@ export interface keycharacterType { title?: string } +export interface keyNineChinaType { + title: string, + content: string +} + export let chineseSourceListData: keySourceListType[] = [ { title: '1', @@ -499,4 +504,44 @@ export let keycharactersData: keycharacterType[] = [ { title: '-' }, +] + +// 九键拼音 +export let keyNineChinaData: keyNineChinaType[] = [ + { + title: ',.?!', + content: '1' + }, + { + title: 'ABC', + content: '2' + }, + { + title: 'DEF', + content: '3' + }, + { + title: 'GHI', + content: '4' + }, + { + title: 'JKL', + content: '5' + }, + { + title: 'MNO', + content: '6' + }, + { + title: 'PQRS', + content: '7' + }, + { + title: 'TUV', + content: '8' + }, + { + title: 'WXYZ', + content: '9' + }, ] \ No newline at end of file -- Gitee