|
@@ -1,12 +1,57 @@
|
|
|
{
|
|
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|
|
{
|
|
|
- "path": "pages/index/index",
|
|
|
- "style": {
|
|
|
- "navigationBarTitleText": "uni-app"
|
|
|
+ "path": "pages/bookstore/bookstore",
|
|
|
+ "style": {
|
|
|
+ "navigationStyle": "custom",
|
|
|
+ "app-plus": {
|
|
|
+ "bounce": "none"
|
|
|
+ }
|
|
|
}
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "path": "pages/bookshelf/bookshelf",
|
|
|
+ "style": {
|
|
|
+ "navigationStyle": "custom",
|
|
|
+ "app-plus": {
|
|
|
+ "bounce": "none"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "path": "pages/mine/mine",
|
|
|
+ "style": {
|
|
|
+ "navigationStyle": "custom",
|
|
|
+ "app-plus": {
|
|
|
+ "bounce": "none"
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
- ],
|
|
|
+ ],
|
|
|
+ "tabBar": {
|
|
|
+ "list": [
|
|
|
+ {
|
|
|
+ "pagePath": "pages/bookstore/bookstore",
|
|
|
+ "text": "书城",
|
|
|
+ "iconPath": "/static/imgs/tabBar/bookstore_0.png",
|
|
|
+ "selectedIconPath": "/static/imgs/tabBar/bookstore_1.png"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "pagePath": "pages/bookshelf/bookshelf",
|
|
|
+ "text": "书架",
|
|
|
+ "iconPath": "/static/imgs/tabBar/bookshelf_0.png",
|
|
|
+ "selectedIconPath": "/static/imgs/tabBar/bookshelf_1.png"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "pagePath": "pages/mine/mine",
|
|
|
+ "text": "我的",
|
|
|
+ "iconPath": "/static/imgs/tabBar/mine_0.png",
|
|
|
+ "selectedIconPath": "/static/imgs/tabBar/mine_1.png"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "color": "#707070",
|
|
|
+ "selectedColor": "#2979ff"
|
|
|
+ },
|
|
|
"globalStyle": {
|
|
|
"navigationBarTextStyle": "black",
|
|
|
"navigationBarTitleText": "uni-app",
|