18 lines
576 B
JavaScript
18 lines
576 B
JavaScript
|
|
export default {
|
|||
|
|
color: "#161616",
|
|||
|
|
selectedColor: "#161616",
|
|||
|
|
borderStyle: "black",
|
|||
|
|
backgroundColor: "#ffffff",
|
|||
|
|
list: [{
|
|||
|
|
pagePath: "pages/YNEduApp/index/index",
|
|||
|
|
iconPath: "/static/eduImg/home.png",
|
|||
|
|
selectedIconPath: "/static/eduImg/homeSelected.png",
|
|||
|
|
text: "首页",
|
|||
|
|
//新版本新增,页面被打开方式,默认为reLaunch
|
|||
|
|
}, {
|
|||
|
|
pagePath: "pages/YNEduApp/user/user",
|
|||
|
|
iconPath: "/static/eduImg/my.png",
|
|||
|
|
selectedIconPath: "/static/eduImg/mySelected.png",
|
|||
|
|
text: "我的"
|
|||
|
|
}]
|
|||
|
|
}
|