123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/mine/mine",
- "style": {
- "navigationBarTitleText": "个人中心"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "注册/登录"
- }
- },
- {
- "path": "pages/mine/identity_authentication",
- "style": {
- "navigationBarTitleText": "身份认证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/mine/scheduling",
- "style": {
- "navigationBarTitleText": "排班设置"
- }
- },
- {
- "path": "pages/mine/myMoney",
- "style": {
- "navigationBarTitleText": "我的钱包"
- }
- },
- {
- "path": "pages/mine/evaluate",
- "style": {
- "navigationBarTitleText": "评价管理"
- }
- },
- {
- "path": "pages/mine/info",
- "style": {
- "navigationBarTitleText": "个人信息"
- }
- },
- {
- "path": "uview-ui/components/u-avatar-cropper/u-avatar-cropper",
- "style": {
- "navigationBarTitleText": "头像裁剪",
- "navigationBarBackgroundColor": "#000000"
- }
- },
- {
- "path": "pages/mine/message",
- "style": {
- "navigationBarTitleText": "消息提醒"
- }
- },
- {
- "path": "pages/mine/bank_card",
- "style": {
- "navigationBarTitleText": "银行卡绑定"
- }
- },
- {
- "path": "pages/mine/accountInfo",
- "style": {
- "navigationBarTitleText": "收入明细"
- }
- },
- {
- "path": "pages/mine/withdrawal",
- "style": {
- "navigationBarTitleText": "申请提现"
- }
- },
- {
- "path": "pages/mine/moneyRecord",
- "style": {
- "navigationBarTitleText": "提现记录"
- }
- },
- {
- "path": "pages/index/orderInfo",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "pages/realTime/realTime",
- "style": {
- "navigationBarTitleText": "实时订单"
- }
- },
- {
- "path": "pages/index/preview",
- "style": {
- "navigationBarTitleText": ""
- }
- }
- ],
- "globalStyle": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#000",
- "selectedColor": "#FBC600",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "/static/index.png",
- "selectedIconPath": "/static/index-select.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/realTime/realTime",
- "iconPath": "/static/realTime.png",
- "selectedIconPath": "/static/realTime_select.png",
- "text": "实时订单"
- },
- {
- "pagePath": "pages/mine/mine",
- "iconPath": "/static/mine.png",
- "selectedIconPath": "/static/mine-select.png",
- "text": "我的"
- }
- ]
- }
- }
|