From 4c2c8720866c48947e89ba9d8d3fff56335452ff Mon Sep 17 00:00:00 2001 From: kangliang <2352009235@qq.com> Date: Sat, 20 Sep 2025 11:48:52 +0800 Subject: [PATCH 1/2] =?UTF-8?q?READE=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.en.md | 13 ++++++++----- README.md | 13 ++++++++----- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/README.en.md b/README.en.md index 41842ce..4b7f551 100644 --- a/README.en.md +++ b/README.en.md @@ -38,11 +38,14 @@ How to Use │ │ └──index.ets // Home page │ └──utils │ └──Logger.ets // Logger -├──entry/src/main/js // JavaScript code area -│ └──complex/pages/index // Define the widget content. -│ ├──index.hml -│ ├──index.css -│ └──index.json +├──entry/src/main/js // Js code area +│ ├──common // Card resource file directory +│ ├──complex // Securities card (4x4) +│ ├──grid // Card Internationalization Language Directory +│ ├──i18n // Grid layout card +│ ├──imgText // Image and text card +│ ├──immersive // Immersive card +│ └──test // Securities card (2x2) └──entry/src/main/resources // App resource directory └──module.json5 // Add the widget extension capability. ``` diff --git a/README.md b/README.md index dbbab62..3313d06 100644 --- a/README.md +++ b/README.md @@ -32,12 +32,15 @@ │ └──utils │ └──Logger.ets // 日志工具类 ├──entry/src/main/js // js代码区 -│ └──complex/pages/index // 定义卡片内容 -│ ├──index.hml -│ ├──index.css -│ └──index.json +│ ├──common // 卡片资源文件目录 +│ ├──complex // 证券卡片(4x4) +│ ├──grid // 卡片国际化语言目录 +│ ├──i18n // 网格布局卡片 +│ ├──imgText // 图文卡片 +│ ├──immersive // 沉浸式卡片 +│ └──test // 证券卡片(2x2) ├──entry/src/main/resources // 应用资源目录 -└──module.json5 // 添加卡片拓展能力 +└──module.json5 // 添加卡片拓展能力 ``` ### 具体实现 -- Gitee From 62a3a59a1747cbf4d158c3a8ec9070dad8514921 Mon Sep 17 00:00:00 2001 From: kangliang <2352009235@qq.com> Date: Wed, 24 Sep 2025 15:24:47 +0800 Subject: [PATCH 2/2] =?UTF-8?q?READE=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.en.md | 12 ++++++------ README.md | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.en.md b/README.en.md index 4b7f551..ef59bce 100644 --- a/README.en.md +++ b/README.en.md @@ -40,12 +40,12 @@ How to Use │ └──Logger.ets // Logger ├──entry/src/main/js // Js code area │ ├──common // Card resource file directory -│ ├──complex // Securities card (4x4) -│ ├──grid // Card Internationalization Language Directory -│ ├──i18n // Grid layout card -│ ├──imgText // Image and text card -│ ├──immersive // Immersive card -│ └──test // Securities card (2x2) +│ ├──complex/pages/index // Securities card (4x4) +│ ├──grid/pages/index // Grid layout card +│ ├──i18n // Card Internationalization Language Directory +│ ├──imgText/pages/index // Image and text card +│ ├──immersive/pages/index // Immersive card +│ └──test/pages/index // Securities card (2x2) └──entry/src/main/resources // App resource directory └──module.json5 // Add the widget extension capability. ``` diff --git a/README.md b/README.md index 3313d06..1b63ad3 100644 --- a/README.md +++ b/README.md @@ -33,12 +33,12 @@ │ └──Logger.ets // 日志工具类 ├──entry/src/main/js // js代码区 │ ├──common // 卡片资源文件目录 -│ ├──complex // 证券卡片(4x4) -│ ├──grid // 卡片国际化语言目录 -│ ├──i18n // 网格布局卡片 -│ ├──imgText // 图文卡片 -│ ├──immersive // 沉浸式卡片 -│ └──test // 证券卡片(2x2) +│ ├──complex/pages/index // 证券卡片(4x4) +│ ├──grid/pages/index // 网格布局卡片 +│ ├──i18n // 卡片国际化语言目录 +│ ├──imgText/pages/index // 图文卡片 +│ ├──immersive/pages/index // 沉浸式卡片 +│ └──test/pages/index // 证券卡片(2x2) ├──entry/src/main/resources // 应用资源目录 └──module.json5 // 添加卡片拓展能力 ``` -- Gitee