123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
-
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "盛和垂钓园"
- }
-
- },
- {
-
- "path": "pages/pay/pay",
- "style": {
- "navigationBarTitleText": "盛和垂钓园"
- }
-
- },
-
- {
- "path": "pages/mine/mine",
- "style": {
- "navigationBarTitleText": "我的预约"
- }
- },
-
- {
- "path": "pages/userInfo/userInfo",
- "style": {
- "navigationBarTitleText": "用户授权"
- }
- }
-
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar":{
- "color":"black",
- "borderStyle":"white",
- "backgroundColor":"white",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/logo.png",
- "selectedIconPath": "static/logo.png",
- "text": "首页"
- }, {
- "pagePath": "pages/mine/mine",
- "iconPath": "static/logo.png",
- "selectedIconPath": "static/logo.png",
- "text": "我的"
- }]
- }
-
- }
|