Uni-app菜单栏

来自CloudWiki
Cloud17讨论 | 贡献2022年6月29日 (三) 09:15的版本 效果图
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索

代码

.

	"tabBar": {
		    "color": "#8B8B8B", // 表示tabBar item项中文字默认的颜色
		    "selectedColor": "#F63515", // 表示tabBar item项中文字选中的颜色
		    "borderStyle": "black",// 表示tabBar 上边框的颜色,目前只支持 black/white
		    "backgroundColor": "#ffffff",// 表示 tabBar 的背景颜色
		    "list": [{
		        "pagePath": "pages/index/index", // 表示第一tab项的页面路径
		        // "iconPath": "static/image/home_default.png", // 表示当前 tab 未选中时所显示的图标路径
		        // "selectedIconPath": "static/image/home_select.png", // 表示当前 tab 选中时所显示的图标文件路径
		        "text": "首页" // 表示当前 tab 的文字
		    }, {
		        "pagePath": "pages/list/list",
		        // "iconPath": "static/image/me_default.png",
		        // "selectedIconPath": "static/image/me_select.png",
		        "text": "我的"
		    }]
	
    }

效果图

600