22 lines
581 B
JavaScript
22 lines
581 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/realName/workbench/index',
|
|||
|
|
iconPath: '/static/realName/work.png',
|
|||
|
|
selectedIconPath: '/static/realName/workSelected.png',
|
|||
|
|
text: '工作台'
|
|||
|
|
}
|
|||
|
|
]
|
|||
|
|
}
|