12345678910111213141516171819 |
- export const tabbar = [{
- iconPath: '../../static/tabBar/home.png',
- selectedIconPath: '../../static/tabBar/home-action.png',
- text: '首页',
- pagePath: '/pages/index/index'
- },
- {
- iconPath: '../../static/tabBar/center.png',
- selectedIconPath: '../../static/tabBar/center-action.png',
- text: '审核',
- pagePath: '/pages/user/applyList'
- },
- {
- iconPath: '../../static/tabBar/user.png',
- selectedIconPath: '../../static/tabBar/user-action.png',
- text: '我的',
- pagePath: '/pages/user/user'
- }
- ]
|