Files

145 lines
3.1 KiB
JSON
Raw Permalink Normal View History

2025-08-18 09:57:10 +08:00
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/my/my",
"style" :
{
"navigationBarTitleText" : "我的",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/orderList/orderList",
"style" :
{
"navigationBarTitleText" : "历史订单查询",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/test/test",
"style" :
{
"navigationBarTitleText" : "测试",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/map/map",
"style" :
{
"navigationBarTitleText" : "配送范围",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/takePhoto/takePhoto",
"style" :
{
"navigationBarTitleText" : "拍照",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/purse/purse",
"style" :
{
"navigationBarTitleText" : "我的钱包",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/login/login",
"style" :
{
"navigationBarTitleText" : "登录",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/register/register",
"style" :
{
"navigationBarTitleText" : "注册",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/authentication/authentication",
"style" :
{
"navigationBarTitleText" : "身份认证",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/changeUserMessage/changeUserMessage",
"style" :
{
"navigationBarTitleText" : "修改用户信息",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/orderDetail/orderDetail",
"style" :
{
"navigationBarTitleText" : "订单详情",
"navigationBarBackgroundColor": "#5e7dec"
}
},
{
"path" : "pages/deliveryDetail/deliveryDetail",
"style" :
{
"navigationBarTitleText" : "订单详情",
"navigationBarBackgroundColor": "#5e7dec"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#B4BCC6",
"selectedColor": "#2588FF",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "static/tabbar/index.png",
"selectedIconPath": "static/tabbar/index1.png",
"text": "首页"
},
{
"pagePath": "pages/orderList/orderList",
"iconPath": "static/tabbar/order.png",
"selectedIconPath": "static/tabbar/order1.png",
"text": "订单"
},
{
"pagePath": "pages/my/my",
"iconPath": "static/tabbar/my.png",
"selectedIconPath": "static/tabbar/my1.png",
"text": "我的"
}
]
},
"uniIdRouter": {},
"easycom": {
"autoscan": true,
"custom": {
"^mo-(.*)": "@/pagesA/components/mo-$1/mo-$1.vue" //此为本组件的自动加载路径
}
}
}