micro-pages
Installation
SKILL.md
Steedos Standalone Pages | Steedos 独立页面
Overview | 概述
Standalone pages are custom pages built with Amis low-code framework that are not tied to specific object records. They can serve as dashboards, reports, custom forms, or any custom UI. Each page is defined as a pair of files: .page.yml (metadata) and .page.amis.json (UI schema).
独立页面使用 Amis 低代码框架构建,不绑定到特定对象记录。每个页面由一对文件定义:.page.yml(元数据)和 .page.amis.json(UI schema)。
File Location | 文件位置
steedos-packages/
└── my-package/
└── main/default/
└── pages/
├── sales_dashboard.page.yml # Page metadata
├── sales_dashboard.page.amis.json # Amis UI schema
├── order_report.page.yml
└── order_report.page.amis.json
Related skills