1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#ffaa00",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/image/index.png",
- "selectedIconPath": "static/image/index-s.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/order/index",
- "iconPath": "static/image/order.png",
- "selectedIconPath": "static/image/order-s.png",
- "text": "订单"
- },
- {
- "pagePath": "pages/my/index",
- "iconPath": "static/image/my.png",
- "selectedIconPath": "static/image/my-s.png",
- "text": "我的"
- }
- ]
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "enablePullDownRefresh": true,
- "onReachBottomDistance": 100 //距离底部100像素时,触发加载更多功能
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/order/index",
- "style": {
- "navigationBarTitleText": "订单",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/order/add",
- "style": {
- "navigationBarTitleText": "订单信息"
- }
- },
- {
- "path": "pages/my/index",
- "style": {
- "navigationBarTitleText": "个人中心"
- }
- },
- {
- "path": "pages/lr/index",
- "style": {
- "navigationBarTitleText": "添加客户信息"
- }
- },
- {
- "path": "pages/lr/bhAdd",
- "style": {
- "navigationBarTitleText": "添加病史记录"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|