28 lines
760 B
JavaScript
28 lines
760 B
JavaScript
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: '我的'
|
||
}
|
||
]
|
||
}
|