企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
https://doc.quickapp.cn/framework/manifest.html 官方文档 ``` { "package": "top.zmkm.www", //包名 "name": "醉红尘", //应用名称 "versionName": "1.0.0", //版本号 "versionCode": 1, "minPlatformVersion": 1070, //手机型号 "icon": "/assets/images/logo.png", //桌面图标 "features": \[     { "name": "system.prompt" //各种组件,必须声明     },     { "name": "system.router"     },     { "name": "system.shortcut"     },     { "name": "system.fetch"     }   \], "permissions": \[     { "origin": "\*"     }   \], "template/official": "demo-template", "config": { "logLevel": "debug"   }, "router": { //路由 "entry": "pages/Demo", //路由默认首页 "pages": { "pages/Demo": { //路由默认首页 "component": "index2"       }, "pages/DemoDetail": { //组件页 DemoDetail是文件夹 "component": "index"       }, "pages/GuoDemo": { "component": "index"       }     }, "widgets": { //快应用卡片 "CardDemo": { "name": "CardDemo", "description": "快应用卡片展示", "component": "index", "path": "/CardDemo", "minPlatformVersion": 1032, "targetManufactorys": \[ "vivo"         \], "features": \[\]       }     }   }, "display": { "titleBarBackgroundColor": "#f2f2f2", //主页背景字体颜色 "titleBarTextColor": "#414141", //主题颜色 "pages": { "pages/Demo": { "titleBarText": "醉红尘小说" //页标题       }, "pages/DemoDetail": { "titleBarText": "详情页" //详情页       }     }   } } ```