You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.6 KiB
73 lines
1.6 KiB
{
|
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|
{
|
|
"path": "pages/index/index",
|
|
"style": {
|
|
"navigationBarTitleText": "挑好厂|找周边工作"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/searchPositions/searchPositions",
|
|
"style": {
|
|
"navigationBarTitleText": "岗位搜索"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/my/my",
|
|
"style": {
|
|
"navigationBarTitleText": "个人中心"
|
|
}
|
|
},
|
|
{
|
|
"path" : "pages/map/map",
|
|
"style" :
|
|
{
|
|
"navigationBarTitleText" : "地图"
|
|
}
|
|
},
|
|
{
|
|
"path" : "pages/positionDetail/positionDetail",
|
|
"style" :
|
|
{
|
|
"navigationBarTitleText" : "岗位详情"
|
|
}
|
|
},
|
|
{
|
|
"path" : "pages/login/login",
|
|
"style" :
|
|
{
|
|
"navigationBarTitleText" : "登录"
|
|
}
|
|
}
|
|
|
|
],
|
|
"globalStyle": {
|
|
"navigationBarTextStyle": "black",
|
|
"navigationBarTitleText": "uni-app",
|
|
"navigationBarBackgroundColor": "#F8F8F8",
|
|
"backgroundColor": "#F8F8F8"
|
|
},
|
|
"tabBar": {
|
|
"list": [
|
|
{
|
|
"text": "首页",
|
|
"pagePath": "pages/index/index",
|
|
"iconPath": "/static/tabbarIcon/home.png",
|
|
"selectedIconPath": "/static/tabbarIcon/home-select.png"
|
|
},
|
|
{
|
|
"text": "搜岗位",
|
|
"pagePath": "pages/searchPositions/searchPositions",
|
|
"iconPath": "/static/tabbarIcon/searchPositions.png",
|
|
"selectedIconPath": "/static/tabbarIcon/searchPositions-select.png"
|
|
},
|
|
{
|
|
"text": "我的",
|
|
"pagePath": "pages/my/my",
|
|
"iconPath": "/static/tabbarIcon/my.png",
|
|
"selectedIconPath": "/static/tabbarIcon/my-select.png"
|
|
}
|
|
]
|
|
},
|
|
"uniIdRouter": {}
|
|
}
|
|
|