mirror of
https://github.com/shuguangnet/uniapp.git
synced 2025-01-23 16:08:44 +08:00
82 lines
1.6 KiB
JSON
82 lines
1.6 KiB
JSON
|
{
|
|||
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|||
|
{
|
|||
|
"path": "pages/index/index",
|
|||
|
"style": {
|
|||
|
"navigationBarTitleText": "主页",
|
|||
|
"navigationStyle": "custom"
|
|||
|
}
|
|||
|
},
|
|||
|
{
|
|||
|
"path" : "pages/classify/classify",
|
|||
|
"style" :
|
|||
|
{
|
|||
|
"navigationBarTitleText" : "分类"
|
|||
|
}
|
|||
|
},
|
|||
|
{
|
|||
|
"path" : "pages/user/user",
|
|||
|
"style" :
|
|||
|
{
|
|||
|
"navigationBarTitleText" : "我的"
|
|||
|
}
|
|||
|
},
|
|||
|
{
|
|||
|
"path" : "pages/classlist/classlist",
|
|||
|
"style" :
|
|||
|
{
|
|||
|
"navigationBarTitleText" : "分类列表"
|
|||
|
}
|
|||
|
},
|
|||
|
{
|
|||
|
"path" : "pages/preview/preview",
|
|||
|
"style" :
|
|||
|
{
|
|||
|
"navigationBarTitleText" : "预览",
|
|||
|
"navigationStyle": "custom"
|
|||
|
}
|
|||
|
},
|
|||
|
{
|
|||
|
"path" : "pages/notice/notice",
|
|||
|
"style" :
|
|||
|
{
|
|||
|
"navigationBarTitleText" : ""
|
|||
|
}
|
|||
|
},
|
|||
|
{
|
|||
|
"path" : "pages/detail/detail",
|
|||
|
"style" :
|
|||
|
{
|
|||
|
"navigationBarTitleText" : "公告详细"
|
|||
|
}
|
|||
|
}
|
|||
|
],
|
|||
|
"globalStyle": {
|
|||
|
"navigationBarTextStyle": "black",
|
|||
|
"navigationBarTitleText": "uni-app",
|
|||
|
"navigationBarBackgroundColor": "#F8F8F8",
|
|||
|
"backgroundColor": "#F8F8F8"
|
|||
|
},
|
|||
|
"tabBar": {
|
|||
|
"list":[
|
|||
|
{
|
|||
|
"text":"推荐",
|
|||
|
"pagePath": "pages/index/index",
|
|||
|
"iconPath": "static/images/home.png",
|
|||
|
"selectedIconPath": "static/images/home-h.png"
|
|||
|
},{
|
|||
|
"text":"分类",
|
|||
|
"pagePath": "pages/classify/classify",
|
|||
|
"iconPath": "static/images/classify.png",
|
|||
|
"selectedIconPath": "static/images/classify-h.png"
|
|||
|
},{
|
|||
|
"text":"我的",
|
|||
|
"pagePath": "pages/user/user",
|
|||
|
"iconPath": "static/images/user.png",
|
|||
|
"selectedIconPath": "static/images/user-h.png"
|
|||
|
}
|
|||
|
]
|
|||
|
},
|
|||
|
"uniIdRouter": {}
|
|||
|
}
|