Wechat----app.json 是对整个小程序的全局(公共)配置

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/damys/article/details/87858109
 {
    "pages": [
      "pages/classic/classic",
      "pages/classic-detail/classic-detail",
      "pages/index/index",
      "pages/book/book",
      "pages/book-detail/book-detail",
      "pages/my/my"
    ],
    "requiredBackgroundModes": [
      "audio"
    ],
    "window": {
      "backgroundTextStyle": "light",
      "navigationBarBackgroundColor": "#fff",
      "navigationBarTitleText": "一路有风",
      "navigationBarTextStyle": "black",
      
      "backgroundColor": "#ffffff",
      "navigationStyle": "default"
    },
    
    "debug": false,
 
/* 跳转小程序,点击指定
<navigator class="nav" target="miniProgram" app-id="wx8ffc97ad5bcccc89" open-type="navigate"> 
<image class="vendor" src="/images/my/vendor.png"></image>
</navigator>  
*/
    "navigateToMiniProgramAppIdList": [
      "wx8ffc97ad5bcccc89"
    ],
  
    "tabBar": {
      "selectedColor": "#000000",
      "backgroundColor": "#ffffff",
      "color": "#c7c7c7",
      "list": [
        {
          "pagePath": "pages/classic/classic",
          "text": "流行",
          "iconPath": "/images/tab/classic.png",
          "selectedIconPath": "/images/tab/[email protected]"
        },
        {
          "pagePath": "pages/book/book",
          "text": "书本",
          "iconPath": "/images/tab/book.png",
          "selectedIconPath": "/images/tab/[email protected]"
        },
        {
          "pagePath": "pages/my/my",
          "text": "我的",
          "iconPath": "/images/tab/my.png",
          "selectedIconPath": "/images/tab/[email protected]"
        }
      ]
    }
  }

猜你喜欢

转载自blog.csdn.net/damys/article/details/87858109