LpRealName/pages/workPlan/util/tabbar.js

28 lines
760 B
JavaScript
Raw Normal View History

2024-12-20 10:32:43 +08:00
export default {
color: '#161616',
selectedColor: '#161616',
borderStyle: 'black',
backgroundColor: '#ffffff',
list: [
{
pagePath: 'pages/workPlan/index/index',
iconPath: '/static/realName/home.png',
selectedIconPath: '/static/realName/homeSelected.png',
text: '首页'
//新版本新增页面被打开方式默认为reLaunch
},
{
pagePath: 'pages/workPlan/workbench/index',
iconPath: '/static/realName/work.png',
selectedIconPath: '/static/realName/workSelected.png',
text: '工作台'
},
{
pagePath: 'pages/workPlan/my/index',
iconPath: '/static/realName/my.png',
selectedIconPath: '/static/realName/mySelected.png',
text: '我的'
}
]
}