12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/login",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/my/my",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/home/home",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/order/order",
- "style": {
- "navigationBarTitleText": "我的订单",
- "enablePullDownRefresh": true
- }
- }
- ],
- "tabBar": {
- "selectedColor": "#a09cc4",
- "list": [{
- "pagePath": "pages/home/home",
- "text": "首页",
- "iconPath": "static/home.png",
- "selectedIconPath": "static/home_selected.png"
- },
- {
- "pagePath": "pages/order/order",
- "text": "订单",
- "iconPath": "static/order.png",
- "selectedIconPath": "static/order_selected.png"
- },
- {
- "pagePath": "pages/my/my",
- "text": "我的",
- "iconPath": "static/my.png",
- "selectedIconPath": "static/my_selected.png"
- }
- ]
- },
- "subPackages": [{
- "root": "subpkg",
- "pages": [{
- "path": "protocol/protocol",
- "style": {
- "navigationBarTitleText": "使用须知"
- }
- },
- {
- "path": "extend/extend",
- "style": {
- "navigationBarTitleText": "我的订单"
- }
- },
- {
- "path": "myAccount/myAccount",
- "style": {
- "navigationBarTitleText": "我的账户"
- }
- },
- {
- "path": "updateUserInfo/updateUserInfo",
- "style": {
- "navigationBarTitleText": "修改个人信息"
- }
- }
- ]
- }],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#a09cc4"
- },
- "uniIdRouter": {}
- }
|