123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index", // 首页
- "style": {
- "navigationBarTitleText": "乐色商城",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "授权登录"
- }
- },
- {
- "path": "pages/userCenter/index",
- "style": {
- "navigationBarTitleText": "个人中心"
- }
- },
- {
- "path": "pages/order/order",
- "style": {
- "navigationBarTitleText": "我的订单"
- }
- }, {
- "path": "pages/order/orderDetail",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "pages/agreement/agreement",
- "style": {
- "navigationBarTitleText": "注意事项及服务协议"
- }
- }
- ,{
- "path" : "pages/cart/cart",
- "style" :
- {
- "navigationBarTitleText": "购物车",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/toOrder/index",
- "style" :
- {
- "navigationBarTitleText": "提交订单",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/goods/goods",
- "style" :
- {
- "navigationBarTitleText": "商品",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/goods/goodsDetail",
- "style" :
- {
- "navigationBarTitleText": "商品详情",
- "enablePullDownRefresh": false
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#f2f2f2",
- "app-plus": {
- // 将回弹属性关掉
- "bounce": "none",
- "scrollIndicator": "none"
- }
- },
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#00aa00",
- "borderStyle": "#eee",
- "backgroundColor": "#ffffff",
- "fontSize": "14px",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/home-active.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/userCenter/index",
- "iconPath": "static/tabbar/user.png",
- "selectedIconPath": "static/tabbar/user-active.png",
- "text": "我的"
- }]
- }
- }
|