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": "詳情頁" //詳情頁
? ? ? }
? ? }
? }
}
```