102 lines
2.1 KiB
JSON
102 lines
2.1 KiB
JSON
{
|
||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
{
|
||
"path": "pages/city/city",
|
||
"style": {
|
||
"navigationBarTitleText": "书城"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/book/book",
|
||
"style": {
|
||
"navigationBarTitleText": "书架"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/class/class",
|
||
"style": {
|
||
"navigationBarTitleText": "分类"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/class/classify",
|
||
"style": {
|
||
"onReachBottomDistance": 20,
|
||
"navigationBarTitleText": ""
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/my/my",
|
||
"style": {
|
||
"navigationStyle":"custom",
|
||
"navigationBarBackgroundColor": "#FFFFFF",
|
||
"navigationBarTitleText": ""
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/my/login",
|
||
"style": {
|
||
"navigationStyle":"custom",
|
||
"navigationBarBackgroundColor": "#FFFFFF",
|
||
"navigationBarTitleText": "登录"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/bookinfo/bookinfo",
|
||
"style": {
|
||
"navigationBarTitleText": "",
|
||
"app-plus": {
|
||
"titleNView": {
|
||
"type": "default" //transparent
|
||
}
|
||
}
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/bookinfo/read",
|
||
"style": {
|
||
"navigationBarTitleText": "读书",
|
||
"onReachBottomDistance": 20
|
||
}
|
||
}
|
||
],
|
||
"globalStyle": {
|
||
"navigationBarTextStyle": "black",
|
||
"navigationBarTitleText": "uni-app",
|
||
"navigationBarBackgroundColor": "#ff0",
|
||
"backgroundColor": "#F8F8F8"
|
||
},
|
||
"tabBar": {
|
||
"color": "#7A7E83",
|
||
"selectedColor": "#3cc51f",
|
||
"borderStyle": "black",
|
||
"backgroundColor": "#ffffff",
|
||
"list": [
|
||
{
|
||
"pagePath": "pages/book/book",
|
||
"iconPath": "static/book.png",
|
||
"selectedIconPath": "static/book.png",
|
||
"text": "书架"
|
||
},
|
||
{
|
||
"pagePath": "pages/city/city",
|
||
"iconPath": "static/city.png",
|
||
"selectedIconPath": "static/city.png",
|
||
"text": "书城"
|
||
},
|
||
{
|
||
"pagePath": "pages/class/class",
|
||
"iconPath": "static/class.png",
|
||
"selectedIconPath": "static/class.png",
|
||
"text": "分类"
|
||
},
|
||
{
|
||
"pagePath": "pages/my/my",
|
||
"iconPath": "static/my.png",
|
||
"selectedIconPath": "static/my.png",
|
||
"text": "我的"
|
||
}
|
||
]
|
||
}
|
||
}
|