| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/order_addcart/order_addcart",
- "style": {
- "navigationBarTitleText": "购物车"
- }
- },
- {
- "path": "pages/user/index",
- "style": {
- "navigationBarTitleText": "个人中心"
- }
- }
- ],
- "subPackages": [
- {
- "root": "pages/users",
- "name": "users",
- "pages": [
- {
- "path": "order_list/index",
- "style": {
- "navigationBarTitleText": "我的订单",
- "navigationBarBackgroundColor": "#e93323",
- "navigationBarTextStyle": "black"
- }
- }
- ]
- }
- ],
- "globalStyle": {
- "navigationBarBackgroundColor": "#F8F8F8",
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "水贝商城",
- "backgroundColor": "#ffe079"
- },
- "tabBar": {
- "color": "#282828",
- "selectedColor": "#CD9933",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/images/tabbar/1-001.png",
- "selectedIconPath": "static/images/tabbar/1-002.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/order_addcart/order_addcart",
- "iconPath": "static/images/tabbar/3-001.png",
- "selectedIconPath": "static/images/tabbar/3-002.png",
- "text": "购物车"
- },
- {
- "pagePath": "pages/user/index",
- "iconPath": "static/images/tabbar/4-001.png",
- "selectedIconPath": "static/images/tabbar/4-002.png",
- "text": "我的"
- }
- ]
- },
- "uniIdRouter": {}
- }
|