app.json配置

379 阅读1分钟

image.png

{
  "pages": [
      "pages/home/home",
      "pages/dynamic/dynamic",
      "pages/my/my",
      "pages/quick/quick",
      "pages/login/login",
  ],

  "window": {
    "backgroundTextStyle": "light",
    "navigationBarBackgroundColor": "#ffffff",
    "navigationBarTitleText": "项目名称",
    "navigationBarTextStyle": "black",
    "backgroundColor": "#ffffff"
  },
  "tabBar": {
    "color": "#959394",
    "selectedColor": "#21a9e2",
    "borderStyle": "black",
    "backgroundColor": "#ffffff",
    "list": [
      {
        "pagePath": "pages/home/home",
        "iconPath": "image/new-home.png",
        "selectedIconPath": "image/new-home-hl.png",
        "text": "首页"
      },
      {
        "pagePath": "pages/dynamic/dynamic",
        "iconPath": "image/new-cart.png",
        "selectedIconPath": "image/new-cart-hl.png",
        "text": "动态"
      },
      {
        "pagePath": "pages/my/my",
        "iconPath": "image/new-me.png",
        "selectedIconPath": "image/new-me-hl.png",
        "text": "我的"
      }
    ]
  },
  "navigateToMiniProgramAppIdList": [
    "wx3c43db43eadcc1c4111",
    "wx52axxb89f1x3xe23c"
  ],
  "networkTimeout": {
    "request": 90000,
    "connectSocket": 90000,
    "uploadFile": 90000,
    "downloadFile": 90000
  },
  "sitemapLocation": "sitemap.json"
}