底部菜单tabbar实现

发布时间:2024年01月23日

在这里插入图片描述

{
  "pages": [
    "pages/index/index",
    "pages/category/index",
    "pages/cart/index",
    "pages/my/index"
  ],
  "window": {
    "navigationBarTextStyle": "black",
    "navigationBarTitleText": "Java1234商城",
    "navigationBarBackgroundColor": "#ffffff"
  },
  "tabBar": {
      "color": "#999",
      "selectedColor": "#FF5700",
      "backgroundColor": "#fafafa",
      "list": [{
          "pagePath": "pages/index/index",
          "text": "首页",
          "iconPath": "icons/_home.png",
          "selectedIconPath": "icons/home.png"
      },
      {
        "pagePath": "pages/category/index",
        "text": "分类",
        "iconPath": "icons/_category.png",
        "selectedIconPath": "icons/category.png"
    },
    {
        "pagePath": "pages/cart/index",
        "text": "购物车",
        "iconPath": "icons/_cart.png",
        "selectedIconPath": "icons/cart.png"
    },
    {
        "pagePath": "pages/my/index",
        "text": "我的",
        "iconPath": "icons/_my.png",
        "selectedIconPath": "icons/my.png"
    }]
  },
  "style": "v2",
  "componentFramework": "glass-easel",
  "sitemapLocation": "sitemap.json",
  "lazyCodeLoading": "requiredComponents"
}

文章来源:https://blog.csdn.net/m0_68935893/article/details/135762545
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。