美文网首页
app.json文件配置

app.json文件配置

作者: 枫林残忆168 | 来源:发表于2018-08-15 23:24 被阅读75次

小程序官网教程

  • 全局变量设置

{
  "pages":[
    "pages/index/index",
    "pages/map/map",
    "pages/person/person"
  ],
  "window":{
    "backgroundTextStyle":"light",
    "navigationBarBackgroundColor": "#62bca3",
    "navigationBarTitleText": "首页",
    "navigationBarTextStyle":"#fff"
  },
  "tabBar": {
    "color": "#bfbfbf",
    "selectedColor": "#62bca3",
    "backgroundColor":"#fff",
    "borderStyle":"black",
    "list": [
      {
        "pagePath": "pages/index/index",
        "iconPath":"pages/images/icon/icon-home.png",
        "selectedIconPath":"pages/images/icon/icon-home-selected.png",
        "text": "首页"
      },
      {
        "pagePath": "pages/map/map",
        "iconPath": "pages/images/icon/icon-map.png",
        "selectedIconPath": "pages/images/icon/icon-map-selected.png",
        "text": "地图"
      },
      {
        "pagePath": "pages/person/person",
        "iconPath": "pages/images/icon/icon-person.png",
        "selectedIconPath": "pages/images/icon/icon-person-selected.png",
        "text": "我的"
      }
    ]
  },
  "networkTimeout": {
    "request": 10000,
    "downloadFile": 10000
  },
  "debug": true
}

相关文章

网友评论

      本文标题:app.json文件配置

      本文链接:https://www.haomeiwen.com/subject/zpbgbftx.html