123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "超市",
- "app-plus": {
- "scrollIndicator": "none"
- //"enablePullDownRefresh": true
- }
- }
- }, {
- "path": "pages/store/index",
- "style": {
- "app-plus": {
- "scrollIndicator": "none"
- }
- }
- }
- , {
- "path": "pages/product/product",
- "style": {
- "app-plus": {
- "animationType": "zoom-out",
- "animationDuration": 300
- }
- }
- }
- , {
- "path": "pages/user/login/login",
- "style": {
- "app-plus": {
- "scrollIndicator": "none"
- }
- }
- }, {
- "path": "pages/user/register/register",
- "style": {
- "app-plus": {
- "scrollIndicator": "none"
- }
- }
- }, {
- "path": "pages/user/forget/forget",
- "style": {
- "app-plus": {
- "scrollIndicator": "none"
- }
- }
- }, {
- "path": "pages/user/center/center",
- "style": {
- "app-plus": {
- "scrollIndicator": "none"
- }
- }
- }, {
- "path": "pages/user/setting/setting",
- "style": {}
- }, {
- "path": "pages/user/bash/bash",
- "style": {
- "app-plus": {
- "scrollIndicator": "none"
- }
- }
- }
- , {
- "path": "pages/user/account_security/security",
- "style": {}
- }, {
- "path": "pages/user/account_security/phone",
- "style": {}
- }, {
- "path": "pages/user/account_security/update_password",
- "style": {}
- }, {
- "path": "pages/user/account_security/address_book",
- "style": {}
- }, {
- "path": "pages/user/account_security/update_phone",
- "style": {}
- }, {
- "path": "pages/user/account_security/bind_phone",
- "style": {}
- }, {
- "path": "pages/base/protocol/protocol",
- "style": {}
- }, {
- "path": "pages/base/about",
- "style": {}
- }, {
- "path": "pages/base/features",
- "style": {}
- }, {
- "path": "pages/base/release_notes",
- "style": {}
- }, {
- "path": "pages/base/help_feedback",
- "style": {}
- }, {
- "path": "pages/base/help_problem",
- "style": {}
- }, {
- "path": "pages/user/account_security/forget_password",
- "style": {}
- }, {
- "path": "pages/user/account_security/verification_phone",
- "style": {}
- }
- , {
- "path": "pages/user/address/address",
- "style": {}
- }, {
- "path": "pages/user/address/addressManage",
- "style": {}
- }
- , {
- "path": "pages/order/order",
- "style": {}
- }, {
- "path": "pages/order/preview",
- "style": {
- "app-plus": {
- "scrollIndicator": "none"
- }
- }
- }, {
- "path": "pages/order/pay",
- "style": {
- "app-plus": {
- "scrollIndicator": "none"
- }
- }
- }, {
- "path": "pages/search/search",
- "style": {}
- }, {
- "path": "pages/user/coupon/coupon",
- "style": {}
- }, {
- "path": "pages/map/location",
- "style": {
- }
- },
- {
- "path": "pages/index/detail",
- "style": {
- }
- }, {
- "path": "pages/market/market",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "navigationStyle": "custom",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#C0C4CC",
- "selectedColor": "#ffc107",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "fontSize": "11px",
- "spacing": "5px",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tabbar/tab-home.png",
- "selectedIconPath": "static/tabbar/tab-home-current.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/market/market",
- "iconPath": "static/tabbar/tab-cart.png",
- "selectedIconPath": "static/tabbar/tab-cart-current.png",
- "text": "超市"
- },
- // {
- // "pagePath": "pages/user/address/address",
- // "iconPath": "static/tabbar/tab-cart.png",
- // "selectedIconPath": "static/tabbar/tab-cart-current.png",
- // "text": "购物车"
- // },
- // {
- // "pagePath": "pages/order/order",
- // "iconPath": "static/tabbar/order.png",
- // "selectedIconPath": "static/tabbar/order-current.png",
- // "text": "订单"
- // },
- {
- "pagePath": "pages/user/center/center",
- "iconPath": "static/tabbar/tab-my.png",
- "selectedIconPath": "static/tabbar/tab-my-current.png",
- "text": "我的"
- }
- ]
- },
- "condition": { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [{
- "name": "test", //模式名称
- "path": "pages/store/index", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }]
- }
- }
|