From 3cfc33f49f505f3e0a1e183a448e139c95dd42b4 Mon Sep 17 00:00:00 2001 From: lvyuanyuan Date: Mon, 22 Sep 2025 15:38:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E7=9B=AE=E5=BD=95=E7=BB=93?= =?UTF-8?q?=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +++++----- README_EN.md | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2501f15..da86d2e 100644 --- a/README.md +++ b/README.md @@ -19,14 +19,14 @@ ArkWeb同层渲染原生组件,原生组件不仅可以提供H5组件无法实 ### 工程结构&模块类型 ``` ├──entry/src/main/ets/ -│ ├──mock -│ │ └──GoodsMock.ets // 模拟数据类 │ ├──entryability │ │ └──EntryAbility.ets // 配置类 -│ └──model +│ ├──model │ │ └──GoodsModel.ets // 类型声明 -│ └──pages -│ └──Index.ets // 程序入口类 +│ ├──pages +│ │ └──Index.ets // 程序入口类 +│ └──viewmodel +│ └──GoodsViewModel.ets // 模拟数据类 └──entry/src/main/resource // 应用静态资源目录 ``` ### 相关权限 diff --git a/README_EN.md b/README_EN.md index 6620ae6..22ae792 100644 --- a/README_EN.md +++ b/README_EN.md @@ -19,14 +19,14 @@ The native same-level rendering components of ArkWeb not only provide some funct ### Project Directory ``` ├──entry/src/main/ets/ -│ ├──mock -│ │ └──GoodsMock.ets // Simulated data class │ ├──entryability │ │ └──EntryAbility.ets // Configuration class -│ └──model +│ ├──model │ │ └──GoodsModel.ets // Type declaration -│ └──pages -│ └──Index.ets // Entry point class +│ ├──pages +│ │ └──Index.ets // Entry point class +│ └──viewmodel +│ └──GoodsViewModel.ets // Simulated data class └──entry/src/main/resource // Static resources of the app ``` ### Required Permissions -- Gitee