123456789101112131415161718192021222324252627 |
- //tabber配置
- export const tabBarList = [
- {
- "pagePath": "/pages/index/index",
- "text": "应用主页",
- "iconPath": "/static/tabbar/home.png",
- "selectedIconPath": "/static/tabbar/home_select.png"
- }, {
- "pagePath": "/pages/taskInfo/taskInfo",
- "text": "任务消息",
- "iconPath": "/static/tabbar/news.png",
- "selectedIconPath": "/static/tabbar/news_select.png"
- },{
- "pagePath": "/pages/my/my",
- "text": "我的",
- "iconPath": "/static/tabbar/my.png",
- "selectedIconPath": "/static/tabbar/my_select.png"
- }
- ]
- export const tabbarClick = (index)=>{
- uni.navigateTo({
- url: tabBarList[index].pagePath
- });
- }
- export const hoverColor = "#554d84"
|