Newer
Older
smart_construction / miniprogram / app.json
zhout on 27 May 2020 1 KB Initial Commit
{
  "cloud": true,
  "pages": [
    "pages/login/login",
    "pages/indexapp/indexapp",
    "pages/earth/earth",
    "pages/applog/applog",
    "pages/about/about",
    "pages/addDevice/addDevice"
  ],
  "window": {
    "backgroundColor": "#F6F6F6",
    "backgroundTextStyle": "light",
    "navigationBarBackgroundColor": "#EEB422",
    "navigationBarTitleText": "智慧施工",
    "navigationBarTextStyle": "black"
  },
  "tabBar": {
    "color": "#FFB90F",
    "selectedColor": "#FFD700",
    "backgroundColor": "#EEB422",
    "list": [
      {
        "pagePath": "pages/indexapp/indexapp",
        "iconPath": "images/index.png",
        "selectedIconPath": "images/index-actived.png",
        "text": "首页"
      },
      {
        "pagePath": "pages/earth/earth",
        "iconPath": "images/earth.png",
        "selectedIconPath": "images/earth-actived.png",
        "text": "地图"
      },
      {
        "pagePath": "pages/applog/applog",
        "iconPath": "images/log.png",
        "selectedIconPath": "images/log-actived.png",
        "text": "日志"
      },
      {
        "pagePath": "pages/about/about",
        "iconPath": "images/about.png",
        "text": "关于我"
      }
    ]
  },
  "sitemapLocation": "sitemap.json",
  "permission": {
    "scope.userLocation": {
      "desc": "你的位置信息将用于小程序位置接口的效果展示"
    }
  },
  "networkTimeout": {
    "request": 30000,
    "connectSocket": 30000,
    "uploadFile": 30000,
    "downloadFile": 30000
  },
  "style": "v2"
}