|
123456789101112131415161718192021222324252627 |
- export default [
- {
- pagePath: "/pages/index/index",
- iconPath: "/static/images/tabBar/home.png",
- selectedIconPath: "/static/images/tabBar/homeActive.png",
- text: "首页"
- },
- {
- pagePath: "/pages/index/customer",
- iconPath: "/static/images/tabBar/customer.png",
- selectedIconPath: "/static/images/tabBar/customerActive.png",
- text: "接待"
- },
- {
- pagePath: "/pages/index/learning",
- iconPath: "/static/images/tabBar/voice.png",
- selectedIconPath: "/static/images/tabBar/voiceActive.png",
- text: "学习"
- },
- {
- pagePath: "/pages/index/personal",
- iconPath: "/static/images/tabBar/user.png",
- selectedIconPath: "/static/images/tabBar/userActive.png",
- text: "个人",
- count: 0
- }
- ];
|