管灌系统农户端微信小程序(嘉峪关应用)
zuoxiao
2024-02-26 3f7ec892d68f71e996489d14d9918dc332281b1e
app.json
@@ -1,17 +1,45 @@
{
  "pages": [
    "pages/wallet/wallet",
    "pages/home/home",
    "pages/login/login",
    "pages/index/index",
    "pages/logs/logs"
    "pages/logs/logs",
    "pages/my/my",
    "pages/recharge/recharge"
  ],
  "window": {
    "navigationBarTextStyle": "black",
    "navigationBarTitleText": "电子钱包",
    "navigationBarBackgroundColor": "#ffffff"
    "navigationBarBackgroundColor": "#1890FF"
  },
  "style": "v2",
  "componentFramework": "glass-easel",
  "sitemapLocation": "sitemap.json",
  "lazyCodeLoading": "requiredComponents"
  "lazyCodeLoading": "requiredComponents",
  "tabBar": {
    "color": "#000000",
    "selectedColor": "#2D8BF7",
    "list": [{
        "pagePath": "pages/home/home",
        "text": "首页",
        "iconPath": "/images/home_grey.png",
        "selectedIconPath": "/images/home_blue.png"
      },
      {
        "pagePath": "pages/wallet/wallet",
        "text": "电子钱包",
        "iconPath": "/images/wallet_grey.png",
        "selectedIconPath": "/images/wallet_blue.png"
      },
      {
        "pagePath": "pages/my/my",
        "text": "个人中心",
        "iconPath": "/images/my_grey.png",
        "selectedIconPath": "/images/my_blue.png"
      }
    ]
  }
}