28 lines
992 B
JavaScript
28 lines
992 B
JavaScript
export default {
|
||
color: "#161616",
|
||
selectedColor: "#161616",
|
||
borderStyle: "black",
|
||
backgroundColor: "#ffffff",
|
||
list: [{
|
||
pagePath: "pages/realName/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: "工作台"
|
||
}, {
|
||
pagePath: "pages/realName/workAttendance/index",
|
||
iconPath: "/static/realName/attendanceIcon.png",
|
||
selectedIconPath: "/static/realName/attendanceSelected.png",
|
||
text: "考勤"
|
||
}, {
|
||
pagePath: "pages/realName/my/my",
|
||
iconPath: "/static/realName/my.png",
|
||
selectedIconPath: "/static/realName/mySelected.png",
|
||
text: "我的"
|
||
}]
|
||
} |