Newer
Older
smart_construction / miniprogram / app.json
zhout on 16 Jun 2020 1 KB 初版提交
{
  "cloud": true,
  "pages": [
    "pages/indexapp/indexapp",
    "pages/earth/earth",
    "pages/applog/applog",
    "pages/about/about",
    "pages/addDevice/addDevice",
    "pages/addDevicelog/addDeviceLog",
    "pages/searchLog/searchLog"
  ],
  "window": {
    "backgroundColor": "#F6F6F6",
    "backgroundTextStyle": "light",
    "navigationBarBackgroundColor": "#F4EA2A",
    "navigationBarTitleText": "智慧施工",
    "navigationBarTextStyle": "black"
  },
  "tabBar": {
    "color": "#FFB90F",
    "selectedColor": "#030303",
    "backgroundColor": "#F4EA2A",
    "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": "日志"
      }
    ]
  },
  "sitemapLocation": "sitemap.json",
  "permission": {
    "scope.userLocation": {
      "desc": "你的位置信息将用于小程序位置接口的效果展示"
    }
  },
  "networkTimeout": {
    "request": 30000,
    "connectSocket": 30000,
    "uploadFile": 30000,
    "downloadFile": 30000
  },
  "style": "v2"
}