美文网首页
小程序-app.json,page.json

小程序-app.json,page.json

作者: jh2k15 | 来源:发表于2018-04-27 18:01 被阅读0次

    配置

    app.json

    {
      "pages": [ ],
      "window": {},
      "tabBar": {},
      "networkTimeout": {},
      "debug": true
    }
    
    1. pages
      数组,每一项都是字符串
    {
      "pages":[
        "pages/index/index",
        "pages/logs/logs"
      ]
    }
    

    2.window

    {
      "window":{
        "navigationBarBackgroundColor": "#ffffff",
        "navigationBarTextStyle": "black",
        "navigationBarTitleText": "微信接口功能演示",
        "backgroundColor": "#eeeeee",
        "backgroundTextStyle": "light"
      }
    }
    

    3.tabBar

    {
     "tabBar": {
        "list": [{
          "pagePath": "pages/index/index",
          "text": "首页"
        }, {
          "pagePath": "pages/logs/logs",
          "text": "日志"
        }]
      },
    }
    

    4.networkTimeout
    5.debug

    page.json

    {
      "navigationBarBackgroundColor": "#ffffff",
      "navigationBarTextStyle": "black",
      "navigationBarTitleText": "微信接口功能演示",
      "backgroundColor": "#eeeeee",
      "backgroundTextStyle": "light"
    }
    

    相关文章

      网友评论

          本文标题:小程序-app.json,page.json

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