12345678910111213141516171819202122232425262728293031 |
- module.exports = {
- // 底部导航栏列表数据
- tabbarList: [{
- pagePath: "/pages/index/index",
- iconPath: "/static/icons/index-gray.png",
- selectedIconPath: "/static/icons/index.png",
- text: '首页',
- customIcon: false,
- },
- {
- pagePath: "/pages/mycode/mycode",
- iconPath: "/static/icons/midbutton-gray.png",
- selectedIconPath: "/static/icons/midbutton.png",
- text: '退役军人码',
- midButton: true,
- customIcon: false,
- },
- {
- pagePath: "/pages/mine/mine",
- iconPath: "/static/icons/mine-gray.png",
- selectedIconPath: "/static/icons/mine.png",
- text: '我的',
- customIcon: false,
- }
- ],
- height: '53px',
- midButton: true,
- inactiveColor: '#909399',
- activeColor: '#303133',
- midButtonSize: 80
- }
|