iflow描述文件调优

This commit is contained in:
yuantao
2025-10-31 16:30:34 +08:00
parent 49c6854e8e
commit 5e1299db5c

View File

@@ -24,6 +24,7 @@
│ └── utils/ # 工具函数 │ └── utils/ # 工具函数
│ └── tool.js # 常用工具函数 │ └── tool.js # 常用工具函数
├── components/ # 公共组件 ├── components/ # 公共组件
├── wxcomponents/ # 微信原生组件
├── uni_modules/ # uni-app 组件 ├── uni_modules/ # uni-app 组件
│ └── z-paging/ # 分页组件库 │ └── z-paging/ # 分页组件库
├── lib/ # 第三方库 ├── lib/ # 第三方库
@@ -125,6 +126,7 @@ npm install
* `uView-Plus` 组件已通过 `easycom` 自动导入,可以直接使用,如:`<u-button>``<u-icon>` * `uView-Plus` 组件已通过 `easycom` 自动导入,可以直接使用,如:`<u-button>``<u-icon>`
* 全局组件放在 `components/` 目录下。 * 全局组件放在 `components/` 目录下。
* 页面独立组件放在页面根目录下的 `components/` * 页面独立组件放在页面根目录下的 `components/`
* 微信的原生组件放在页面根目录下的 `wxcomponents/`
* 组件编写应遵循项目中已有的风格。 * 组件编写应遵循项目中已有的风格。
## 页面 ## 页面