From 65bc328072ea2c9fabf8d9565700503a3e0b8145 Mon Sep 17 00:00:00 2001 From: lloyd <754415+llince@user.noreply.gitee.com> Date: Tue, 18 Mar 2025 10:44:27 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=AE=9E=E7=8E=B0=E4=B8=8A=E4=BC=A0?= =?UTF-8?q?=E5=92=8C=E4=B8=8B=E8=BD=BD=E5=8A=9F=E8=83=BD=E3=80=91=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.en.md | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.en.md b/README.en.md index 1a7b838..0d08dce 100644 --- a/README.en.md +++ b/README.en.md @@ -48,10 +48,10 @@ This sample shows how to use the APIs provided by @ohos.request to create upload │ ├──Index.ets // Home page entry │ └──Upload.ets // Upload page ├──entry/src/main/resources // Static resources of the app -│ ├──features/uploadanddownload/src/main/ets/ // Upload and download │ ├──components -│ │ └──FileBrowse.ets // Component for viewing downloaded files +│ │ ├──FileBrowse.ets // Component for viewing downloaded files +│ │ └──FilesDetailView.ets // Component for viewing downloaded files detail │ ├──download // Download │ │ ├──model │ │ │ └──FileModel.ets diff --git a/README.md b/README.md index 2bf2894..95d6729 100644 --- a/README.md +++ b/README.md @@ -48,10 +48,10 @@ │ ├──Index.ets // 主页入口 │ └──Upload.ets // 上传页面 ├──entry/src/main/resources // 应用静态资源目录 -│ ├──features/uploadanddownload/src/main/ets/ // 上传和下载 │ ├──components -│ │ └──FileBrowse.ets // 查看下载文件组件 +│ │ ├──FileBrowse.ets // 查看下载文件组件 +│ │ └──FilesDetailView.ets // 文件详情组件 │ ├──download // 下载任务相关 │ │ ├──model │ │ │ └──FileModel.ets -- Gitee