1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [{
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/personal/personal",
- "style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/message/message",
- "style": {
- "navigationBarTitleText": "消息",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/order/order",
- "style": {
- "navigationBarTitleText": "订单",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": ""
- //登录
- //"navigationStyle":"custom"
- }
- }, {
- "path": "pages/login/chooseRole",
- "style": {
- "navigationBarTitleText": "选择角色",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/login/register",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/login/userAgreement",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- // "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#fff",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#7A7E83",
- "borderStyle": "black",
- "selectedColor": "#00BFFF",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/images/tabbar/home.png",
- "selectedIconPath": "static/images/tabbar/home-active.png",
- "text": "首页"
- }, {
- "pagePath": "pages/order/order",
- "iconPath": "static/images/tabbar/order.png",
- "selectedIconPath": "static/images/tabbar/order-active.png",
- "text": "订单"
- }, {
- "pagePath": "pages/message/message",
- "iconPath": "static/images/tabbar/message.png",
- "selectedIconPath": "static/images/tabbar/message-active.png",
- "text": "消息"
- }, {
- "pagePath": "pages/personal/personal",
- "iconPath": "static/images/tabbar/my.png",
- "selectedIconPath": "static/images/tabbar/my-active.png",
- "text": "我的"
- }]
- }
- }
|